python笔记(1)

1 引入脚本:注意不含.py

import XXX

2 直接调用脚本:注意在cmd中,且含.py

python Duplicate_check.py

3 一行代码导入所有库

#pip install pyforest
import pyforest

4 基本函数定义语句

def function():
    ......
    return ....

5 从脚本中导入方法

from jiaoben import function

6 循环语句

for语句

for x in xxx:

     ......

while语句

while ...:
    ...

if语句

if   ...:
     ...
elif  ...:
      ....
else:
      ....

你可能感兴趣的:(python笔记,笔记)