-3
f=open('Student.dat','r+') # opens Student.dat file
roll1=input("Enter roll to be found") # to find a record in a list using a roll no
rec=f.readlines()
for i,lst in enumerate(rec):
if lst == roll1:
print rec[i]
這是使用枚舉的正確方法嗎?或者我應該使用另一個循環?如何使用枚舉解決這個程序?
我的意思是: 我有一個像[1,蘋果,2,芒果。現在用枚舉我想完全採用滾筒沒有尋找它後打印記錄2,芒果一個列表。如果roll == 2則打印記錄。
你有一個'list',每一個其他項目是代表指數的整數? – TigerhawkT3