python如何將幾個數字或者字符輸入到一個列表或者字符串中在一行輸出?
str1=""str_list=[]for i in range(5): N=input("please enter the number:"
) str1+=str(N) str_list.append(str(N)
)print str1print str_list
python如何將幾個數字或者字符輸入到一個列表或者字符串中在一行輸出?
str1=""str_list=[]for i in range(5): N=input("please enter the number:"
) str1+=str(N) str_list.append(str(N)
)print str1print str_list