我是 python 新手,只需要一点帮助来使用这个测试程序来修改我的学习。
我在这个程序的最后一个问题上遇到错误:
var1 = [["Carl", 1], ["Josh", 3]]
input("Please choose var1[0] or var1[1]")
if input == var1[0]:
input("would you like to print the string or the int?(0 = str, 1 = int)")
if input == 0:
print(var1[0[0]])
else:
print(var1[0[1]])
else:
input("would you like to print the string or the int?(0 = str, 1 = int)")
if input == 0:
print(var1[1[0]])
else:
print(var1[1[1]])