Get factorial of any number in Python Question TheDataMonk Input = 5 Output = 1*2*3*4*5 = 120 in progress 0 Python 55 years 4 Answers 670 views Grand Master
Unfold a list within a list in Python Question TheDataMonk Input = [1,2,3,5,[45,56,67],4] Output = [1,2,3,5,45,56,67,4] in progress 0 Python 55 years 3 Answers 736 views Grand Master
Create two lists from one list of number in Python Question TheDataMonk List_1 = [1,4,3,5,3,2,6] Output even = [4,2,6] Odd = [1,3,5,3] in progress 0 Python 55 years 3 Answers 669 views Grand Master
Get the sum of digits in Python Question TheDataMonk Input - 342 Output - 9 Avoid using default functions in progress 0 Python 55 years 4 Answers 701 views Grand Master
What is the output of the below program? Question TheDataMonk def abc(): print("The") return "Data" return"Monk" print(abc()) in progress 1 Python 55 years 9 Answers 858 views Grand Master
Output of List Question TheDataMonk Let list1 = ['s', 'r', 'a', 's'] and list2 = ['a', 'a', 'n', 'h'], what is the output of ["".join([i, j]) for i, j in zip(list1, list2)] in progress 0 Python 55 years 3 Answers 631 views Grand Master
Duplicates in list Question YashikaKhurana Write a program to remove duplicate elements from the list. 0 Python 55 years 0 Answers 470 views Master
Create a lit containing list, dictionary,tuple in Python Question TheDataMonk A list can contain anything. So create a list with elements as list, dictionary and tuple in progress 0 Python 55 years 3 Answers 629 views Grand Master
How do you do n-fold cross validation in Python? Question TheDataMonk Write a self explanatory code in progress 0 Python 55 years 4 Answers 767 views Grand Master
Sort a list of number with sort function and without sort function. Explain it with a dry run of the code Question TheDataMonk Unsorted_list = [2,3,1,4,5] Sorted_list = [5,4,3,2,1] Make sure you comment your code or explain the dry run in the answer section in progress 0 Python 55 years 8 Answers 758 views Grand Master