Summary for myself Updated from time to time ** I just need to know myself, so the terms may be wrong in some places **
!! View
#command
#Argument option description
import sys
#The end of the program
sys.exit()
#Setting the installation source path for your own modules, etc.
sys.path.append()
#Get command line arguments in list
[argument] = sys.argv
Recommended Posts