Largest in list Question YashikaKhurana Write a program to find the largest element from the following list: lis=[11,30,11,99,99] in progress 0 Python 55 years 2 Answers 837 views Master
Add list items Question YashikaKhurana Write a program to add the items of a list. solved 0 Python 55 years 2 Answers 795 views Master
check if number is palindrome Question YashikaKhurana 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 Python 55 years 0 Answers 842 views Master
Recursive approach for palindrome Question YashikaKhurana Write a program to find out if a string is palindrome or not, using recursion. in progress 0 Python 55 years 1 Answer 761 views Master
pattern printing Question YashikaKhurana Print the following pattern: * * * * * * * * * * * * * * * * * * * * * * * * * in progress 0 Python 55 years 2 Answers 781 views Master
Prime numbers using for loop Question YashikaKhurana Write a program to find all prime numbers between 25 and 50. in progress 0 Python 55 years 1 Answer 1092 views Master
Display numbers using for loop Question YashikaKhurana Display numbers from -12 to -1 using for loop. in progress 0 Python 55 years 0 Answers 789 views Master
List reversal using for loop Question YashikaKhurana Reverse the list below using for loop: my_list=[11,34,56,90,32] in progress 0 Python 55 years 2 Answers 773 views Master
Check existence of an item Question YashikaKhurana Check if Apple exists in the dictionary below: fruits={ "mango":"yellow", "pear":"green:, "apple":"red", } in progress 0 Python 55 years 1 Answer 923 views Master
Dictionary deletion methods Question YashikaKhurana In what two ways can you discard a dictionary? in progress 0 Python 55 years 1 Answer 877 views Master