Question
n=int(input("Enter a number:")) t=n r=0 while(n>0): d=n%10 r=r*10+d n=n//10 if(t==r): print("Palindrome") else: print("Not a Palindrome")
0
4 years 0 Answers 717 views Master

Question
Print the following pattern: * * * * * * * * * * * * * * * * * * * * * * * * *
in progress 0
4 years 2 Answers 674 views Master

Question
While recording the marks, Maria mistakenly added her Physics marks as 12. Correct it to be 20. MariaMarks={ "Math":18, "Chemistry":12, "Physics":12 }
in progress 0
4 years 2 Answers 666 views Master

Question
Alexis is 23 years old. Add this to her record existing as: my_record={'name': 'alexis', 'city': 'georgia'}
in progress 0
4 years 1 Answer 677 views Master