Python3 模塊
Python3 模塊
模塊是在函數(shù)和類的基礎(chǔ)上,將一系列相關(guān)代碼組織到一起的集合體。在 Python 中,一個模塊就是一個擴(kuò)展名為 .py 的源程序文件。
模塊里包含所有你定義的函數(shù)和變量的文件,它可以被別的程序引入,以使用該模塊中的函數(shù)等功能。這也是使用 python 標(biāo)準(zhǔn)庫的方法。
下面是一個使用 python 標(biāo)準(zhǔn)庫中模塊的例子。
范例(Python 3.0+)
#!/usr/bin/python3 # 文件名: using_sys.py import sys print('命令行參數(shù)如下:') for i in sys.argv:
print(i) print('\n\nPython 路徑為:', sys.path, '\n')
相關(guān)文章
- Python 簡介
- Python 條件語句
- Python SMTP發(fā)送郵件
- Python 隊列
- Python3 模塊
- Python3 輸入和輸出
- Python exp() 函數(shù)
- Python max() 函數(shù)
- Python File readlines() 方法
- Python os.tcsetpgrp() 方法
- Python os.unlink() 方法
- Python os.walk() 方法
- Python isdecimal()方法
- Python isnumeric()方法
- Python isspace()方法
- Python isupper()方法
- Python min()方法
- Python rfind()方法
- Python startswith()方法
- Python time sleep()方法