0
私はこのプログラムを持っている:このwhileループで私を助けることができますか?
n = []
m = []
name = input("Enter student's names (separated by using commas) : ")
mark = input("Enter student's marks (separated by using commas) : ")
(n.append(name))
(m.append(mark))
total = 0
index = 0
while index < len(name) :
print("name:",name[index],'mark:',mark[index])
index +=1
をし、それは次のように出てきた:
Enter student's names (separated by using commas) : a,s,d
Enter student's marks (separated by using commas) : 1,2,3
name: a mark: 1
name: , mark: ,
name: s mark: 2
name: , mark: ,
name: d mark: 3
それだけでこのように出てくるにする方法:
Enter student's names (separated by using commas) : a,s,d
Enter student's marks (separated by using commas) : 1,2,3
name: a mark: 1
name: s mark: 2
name: d mark: 3
はい、それが仕事に...ありがとう....しかし、質問は最初に空のリストを作成するように頼みます...そして、私はコンマを取り除く方法を知らない –
空リストnとmを作成してカンマ区切りの値を追加しようとしていると思いますか? –
wowww ... it workssss ....ありがとうございました。 –