我正在尝试制作一个程序,您选择说中位数作为选项,接下来我可以让它要求您输入您的列表并说(“例如:10,40,30”),然后让它在“,”并将其附加到列表中,然后将其取出“,”。任何想法我怎么能做到这一点?
这就是我到目前为止所得到的一切
option5=(["1. Median", "2. Average", "3. Mean", "4. Mode"])
for items in option5:
print (items)
print ("")
choice5=input("Choose another option: ")
while choice5 not in ("1234"):
choice5=input("Choose another option: ")
print("")
if choice5 == "1":
print("Please put your list of numbers like the example below.")
print("Ex: 10,20,30")
print("")
median=input("List: ")