Python入門語法

2022-05-12 07:57:40 字數 1200 閱讀 7842

python入門語法

動態變數 

a=3  整數

a='abc'   a="abc"    字串

a=3.0       小數

a=true  a=false   布林型

a=3    a++ a--  --a  ++a

結果   3     -3   -3    3

靜態變數同語法

l=[1,2,3]  l[0]為1  l[-1]為3

l=['123','456','789']

l=["123","456","789"]

set集合(集合內元素不能相同,相同只保留乙個,add(元素)增加元素進去 remove(元素)移出)

s=set([1,2,3])

s=set(['123','456','789'])

s=set(["123","456","789"])

s=set(list集合)

tuple集合(建立後不可以更改內容)

s=(1,2,3)

s=('123','456','789')

s=('12','34',[1,2])//特別之處:該tuple中[1,2]是可以更改的

dict集合:以名值對的形式儲存資料key:value 存放時沒有順序的  無論資料多少訪問速度相同 比如下面的d用print列印有可能李四先列印出來

d=def generate_tr(name, score):

if score < 60:

return '%s

%s' % (name, score)

return '%s

%s' % (name, score)

tds = [generate_tr(name, score) for name, score in d.iteritems()]

print ''

print 'name

score

'print '\n'.join(tds)

print ''

執行結果

name

score

lisa

85adam

95bart

59

在html中為

python語法入門

輸出 print 你好啊 end print 中國 你好啊中國 變數 格式化列印 cars 100print f 我的車子有輛 我的車子有100輛 獲取鍵盤輸入 data input 請輸入乙個數字 print data 輸入乙個數字11 11from sys import ar script,on...

python入門 基本語法

標準資料型別 number 數字 string 字串 list 列表 tuple 元組 sets 集合 dictionary 字典 number只支援int 表示長整型 float,bool,complex 複數 python中有type 函式檢測變數型別 del 要刪除物件 可以刪除物件 1 py...

python 語法入門 2

python的資料型別有 列表,元組,set,字典 還有列表內建函式,filter func,x,y func 返回true or false,將列表中的值,分別放到func中根據返回的true 來將該值取出 map func,x,y 將列表中的值 放到func中,將返回值放到返回的列表中。map ...