import sys print("This is the name of the script:", sys.argv[0]) print("Number of arguments:", len(sys.argv)) print("The arguments are:" , str(sys.argv)) ...
確定! 回上一頁