程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

6、 Python learning notes - module -sys module

編輯:Python
# sys modular
"""
1、 operation python Interpreter
"""

# Introduce modules
import sys
# Receiving parameters
"""
1、 adopt pycharm Of python console Or the command line of the system
2、 Usage mode python name.py a b c
python It's an interpreter
name.py It's the name of the file
abc Is the parameter
3、 It returns a list , The first value in the list is always the file
"""
print(sys.argv)
# Get the parameters in the following way
print(sys.argv[0])
# print(sys.argv[1])
# Exit procedure
# sys.exit(0)
# obtain python Speckles of the interpreter
print(sys.version)
# Return the search path of the module
print(sys.path)
# Add search path for module
sys.path.append(r'F:/python note /6、 modular /4、sys modular ')
# Return operating system platform name
print(sys.platform)

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved