sys.argv[1]在脚本中的意义

sys.argv[1]在脚本中的意义

我目前正在教自己Python,只是想知道(参考下面的例子)用简单的术语来说sys.argv[1]代表。它仅仅是要求输入吗?

#!/usr/bin/python3.1# import modules used here -- sys is a very standard oneimport sys# Gather our code in a main() functiondef main():
  print ('Hello there', sys.argv[1])
  # Command line args are in sys.argv[1], sys.argv[2] ..
  # sys.argv[0] is the script name itself and can be ignored# Standard boilerplate to call the main()
   function to begin# the program.if __name__ == '__main__':
  main()


喵喵时光机
浏览 2668回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python