#輸入
temp =
input
("請輸入乙個數字"
)#輸出(區別)
print
("hello"
)print
("hello"
,end="")
#檢視型別
print
(type
(temp)
)#或使用isinstance()型別一致返回true
print
(isinstance
(temp,
str)
)#轉換型別
i =int
(temp)
print
(type
(i))
#反斜槓的使用
#輸出let's go c:\now
#error:print('let's go')
print
('let\'s go'
)print
("let's go"
)print
('c:\now'
)print
('c:\\now'
)#雙斜槓地板除法(無論是整型還是浮點型,都捨棄小數部分)
print
(3.0/2
)print
(3.0//2
)#長字串 print("a\nb\n")可以表示為
print
("""ab
""")
#if條件選擇
if i >3:
print
("比3大"
)else
:print
("比3小"
)#if...elif...elif...else
#條件表示式(三元操作符)
x =1
y =2
temp =
3if x > y else
4if x == y else
5print
(temp)
#迴圈while
#迴圈for
for temp in
"finish"
:print
(temp)
#error:for temp in 100
#range()為指定的整數生成乙個數字序列(可迭代物件)
print
("""
range(stop)
range(start,stop)
range(start,stop,step)
""")
for temp in
range(1
,10,2
):print
(temp)
#break結束迴圈
#continue進入下一輪迴圈
#迴圈else語句(break的作用與沒有else時有區別)
print
("""
while 條件:
迴圈體else:
條件不成立時執行的內容
for ... in ...:
迴圈體else:
條件不成立時執行的內容
""")
#隨機數random模組
import random
temp = random.randint(1,
10)print
(temp)
Python學習筆記 五 基本語句
python支援迭代賦值。即把乙個序列或可迭代物件中的元素同時賦值給多個變數,如果等號右側含有表示式,會把所有表示式的值先計算出來,然後再進行賦值。多個變數同時賦值 x,y,z 1,2,3 v tuple false,3.5,exp x,y,z v tuple x,y,z v tuple 可以對ra...
python 基本語句
print hello word hello word print hello nwoerd hello woed print hello nword hello nword print r hello word n hello work n a dogs print hello s a hello...
Python學習筆記 基本型別
根據廖雪峰的python教程做成的筆記,其中不包含全部知識點,僅是重點或是容易發生混淆或者忘記的部分。a 1024 b 768 print d d d a,b,a b classmates huang.lei huang.bo sun.honglei month 1,2,3,4,5,6,7,8,9,...