在Python中,我将信息从文件填充到列表中,然后打印列表中的第一个索引,现在我想在不使用多个代码的情况下从列表中打印下一个索引。
如何提升正在打印的索引?
public function paymentGateway()
{
dd('this is a payment gateway');
}
答案 0 :(得分:0)
据我了解,您正在尝试分界线。 假设
line = '1000 2000 3000'
line = line.split(' ')
然后您将获得第[0]行
尝试一下,希望对您有所帮助。
答案 1 :(得分:0)
使用邮政编码:
with open("questions.txt") as ques, open("answers.txt") as ans:
for q, a in zip(ques, ans):
print(q)
uanswer = input("Write the answer: ")
if float(a) == float(uanswer):
print("Amazing " + str(a) + " is the correct answer")
else:
print("Wrong " + str(uanswer) + " is not correct, Try again please. ")