fruits =["watermelon","banana","Cherry","pineapple","oranges"]
vegitable =["Tomato","potato","torry","bottle goud","bittre gourd"]#adding fruits and vegitable in a list called dirty_dozen
dirty_dozen =[fruits, vegitable]print(dirty_dozen)
list_of_names=["Bill","John","Susan","Bob","Emma","Katherine"]
new_name="James"
list_of_names.append(new_name)# The list is now ["Bill", "John", "Susan", "Bob", "Emma","Katherine", "James"]
defmain():
number_of_values =int(input('Please enter number of values: '))# int
myList = create_list(number_of_values)# myList = function result
total = get_total(myList)print('the list is: ', myList)print('the total is ', total)defget_total(value_list):
total =0for num in value_list:
total += num
return total
defcreate_list(number_of_values):
myList =[]for _ inrange(number_of_values):# no need to use num in loop here
num =int(input('Please enter number: '))# int
myList.append(num)return myList
if __name__ =='__main__':# it's better to add this line as suggested
main()
myList =[1,2,3]
myList.append(4)
fruits =["watermelon","banana","Cherry","pineapple","oranges"]
vegitable =["Tomato","potato","torry","bottle goud","bittre gourd"]#adding fruits and vegitable in a list called dirty_dozen
dirty_dozen =[fruits, vegitable]print(dirty_dozen)