common line argument
就最后一个条件完不成 本帖最后由 suchocolate 于 2020-9-6 19:23 编辑{:10_312:}
你的代码,你的问题是啥? suchocolate 发表于 2020-9-6 19:17
你的代码,你的问题是啥?
就 sys.argv 一定是一个数字,比如 sys.argv = 3,最后输出的就是 sys.argv. 但是他有一个条件,就是如果 sys.argv 这个数字大于 python command_line.py 后面跟着的内容的数量,要输出 Too big!import sys
b = int(sys.argv)
a = sys.argv
if a != "":
print(a)
else:
print('Too big') xxlxxl 发表于 2020-9-6 19:29
就 sys.argv 一定是一个数字,比如 sys.argv = 3,最后输出的就是 sys.argv. 但是他有一个条件, ...
你能发原题目吗 suchocolate 发表于 2020-9-6 19:31
你能发原题目吗
能是能,但是是英文
Write a program which takes 1 or more extra command line arguments. The 1st command line argument will always be a number - the program should then print the command line argument in that position.
If the given number is larger than the number of arguments, the program should print Too big! and quit. 本帖最后由 suchocolate 于 2020-9-6 20:00 编辑
import sys
a = sys.argv
if a:
val = int(a)
args_num = len(a) - 1
if val > args_num:
print('Too big')
exit()
else:
print(a)
页:
[1]