Question
Write a program to find the largest element from the following list: lis=[11,30,11,99,99]
in progress 0
4 years 2 Answers 733 views Master

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 718 views Master

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