1.檢視python版本
python -V
以上指令執行結果如下:
2.辨別符
- 第一個字元必須是字母表中字母或下劃線 _ 。
- 辨別符的其他的部分由字母、數字和下劃線組成。
- 辨別符對大小寫敏感。
3.python保留字
保留字即關鍵字,我們不能把它們用作任何辨別符名稱。Python 的标準庫提供了一個 keyword 子產品,可以輸出目前版本的所有關鍵字:
>>> import keyword
>>> keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for',
'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
4.注釋
Python中單行注釋以 # 開頭,執行個體如下:
# 第一個注釋
print ("Hello, Python!")
多行注釋可以用多個 # 号,還有 ''' 和 """:
# 第一個注釋
# 第二個注釋
'''
第三注釋
第四注釋
'''
"""
第五注釋
第六注釋
"""
print ("Hello, Python!")
5.行與縮進
python最具特色的就是使用縮進來表示代碼塊,不需要使用大括号 {} 。
縮進的空格數是可變的,但是同一個代碼塊的語句必須包含相同的縮進空格數。
if True:
print('True')
else:
print('False')
以下代碼最後一行語句縮進數的空格數不一緻,會導緻運作錯誤:
if True:
print('C')
print('C#')
else:
print('python')
print('java') # 縮進不一緻,會導緻運作錯誤
錯誤:IndentationError: unindent does not match any outer indentation level
補充:if else 後的參數可不寫"()",單必須寫":"
6.多行語句
Python 通常是一行寫完一條語句,但如果語句很長,我們可以使用反斜杠(\)來實作多行語句
total = "item_one \
item_two \
item_three"
在 [], {}, 或 () 中的多行語句,不需要使用反斜杠(\)
total = ['one',
'two',
'three']
7.等待使用者輸入
temp = input('\n請輸入内容:')
print(temp)
\n在結果輸出前會輸出個新的空行
8.同一行顯示多條語句
Python可以在同一行中使用多條語句,語句之間使用分号(;)分割
import sys; x = 'runoob'; sys.stdout.write(x + '\n')
# 輸出結果:runoob
9.Print 輸出
print 預設輸出是換行的,如果要實作不換行需要在變量末尾加上 end="":
string1 = "one"
string2 = "two"
# 換行輸出
print(string1)
print(string2)
# 不換行輸出
print(string1,end=" ")
print(string2)
10.import 與 from...import
在 python 用 import 或者 from...import 來導入相應的子產品。
将整個子產品(turtle)導入,格式為: import turtle
從某個子產品中導入某個函數,格式為: from turtle import done
從某個子產品中導入多個函數,格式為:from turtle import done,deepcopy
将某個子產品中的全部函數導入,格式為: from turtle import *
import turtle
from turtle import done
from turtle import done,deepcopy
from turtle import *
11.指令行參數
很多程式可以執行一些操作來檢視一些基本資訊,Python可以使用-h參數檢視各參數幫助資訊