Python:列表检查
我正在尝试编写一个 Python (2.7.3) 程序来检查列表以查看是否已给出列表的放置值?
input = raw_input("(Enter three numbers separated by commas) >: ")
input_list = input.split(" ")
replacing_letters = [str(x.strip(" ")) for x in input_list]
'if replacing_letters[2] is blank:'
print"Incomplete"
'elif replacing_letters[2] is full':
print replacing_letters
因此,如果我要在输入中输入三个数字,它会将列表打印给用户。但是假设我只输入两个数字。它将返回给用户“不完整”。
关于实现此目的的方法或代码的任何建议?