Python基礎知識

2021-10-12 10:10:26 字數 912 閱讀 2748

print

("hello,world"

)a =

int(

input

("please input a num:"))

b =int

(input

("please input a num:"))

print

(a + b)

print

('希望疫情早點結束'

,end=

'+')

#再不換行的同時加+

print

('全國上下齊心協力'

,end=

'=')

#鏈結下一句不換行時加=

print

('一切都會好起來的'

)#列印結果為:希望疫情早點結束+全國上下齊心協力=一切都會好起來的

注意end前面是逗號

print

("i love china\ni love you"

)

a =

97c =

'a's =

"abc"

print

("%d %c %s"

%(a,c,s)

)k =

3.1415926

print

("%.3f"

%k)

a,b =1,

2print

(a,b)

a,b =

map(

int,

input()

.split())

print

(a," "

,b)

Python 基礎知識

來自 一 識別符號 1.python 中的識別符號是區分大小寫的。2.標示符以字母或下劃線開頭,可包括字母,下劃線和數字。3.以下劃線開頭的識別符號是有特殊意義的。以單下劃線開頭 foo 的代表不能直接訪問的類屬性,需通過類提供的介面進行訪問,不能用 from import 而匯入 以雙下劃線開頭的...

python基礎知識

一.隨機數的生成 都需要 import random 1.用於生成乙個指定範圍內的隨機浮點數。print random.uniform 10,20 print random.uniform 20,10 2.生成乙個指定範圍內的整數。下限必須小於上限制 print random.randint 12,...

python基礎知識

py基礎學習 1.命令列輸入python命令式,例如python test.py c m install sys.argv test.py c m install 2.切片,str 0 5 1 含頭不含尾,表示倒序切 3.unicode和encode unicode str,utf 8 將utf 8...