一些基本的函式,總結的還不全面,以後會陸續加入。
1.輸出:
>>>print('hello')
hello
2.輸入:
>>>myname = input() (返回乙個字串型別)
輸入你的名字,比如lee
>>>print(myname)
lee3.字串長度:
>>>len('hello world')
>>>len(myname)
4.型別轉換:
>>>str(2017)
'2017'
>>>int(20.17)
20>>> int('2017')
2017
>>>float('3.14')
3.14
>>>float('2017')
2017.0
上面的型別轉換很有意思,比如float轉為int,但如果你將乙個不能求值為整數的值傳遞給
int(),比如》int('20.17'),它就會報錯,這時候我們需要慢慢轉化:
>>> int(float('20.17'))
20在python中,雖然數字的字串值被認為與整型值和浮點型值完全不同,但整型值可以與浮點值相等:
>>>42 == '42'
false
>>>42 == 42.0
true
4.編碼:
>>> ord('a')
65>>> chr(65)
'a'>>> ord('a')
97
Python學習筆記 基本函式
變數不需要定義 temp input 請輸入 test int temp print test 執行結果 temp input 請輸入 test int temp if test 5 print 比五大 else print 比五小 執行結果 注意事項 if後空格然後寫條件,條件後跟冒號,冒號後按回...
python學習1 基本知識與函式
建立乙個list a 0,1,1,2 print a 0,1,1,2 建立乙個字典 names print names d dict name genn age 42 print d 輸出為 一些運算子 x is y x is not y x和y是不同的物件 x in y x not in y x不...
Python學習筆記(十五)函式的基本使用
一 函式的概念及作用 定義函式 封裝 獨立的功能 呼叫函式 享受 封裝 的成果 二 函式的定義 定義函式的格式如下 def 函式名 函式封裝的 def 是英文 define 的縮寫 函式名稱應該能夠表達 函式封裝 的功能,方便後續的呼叫 函式名稱的命名應該 符合識別符號的命名規則 應該先定義函式,再...