python學習筆記 一

2021-06-28 01:15:01 字數 1087 閱讀 4309

1.python中字串連線使用"+"

text1 = 'hello'

text2 = ' world'

print text1+text2 //hello world

2.字串表示

在python中將值轉換為字串有三種機制

ⅰ.repr(),將值以合法形式的python表示式來表示值;

print 'hello world'   // hello world

print 1000l // 1000

直接列印出來的結果是不帶雙引號或者沒有型別符的,如果使用repr()

print repr('hello world')     //'hello world'

print repr(1000l) //1000l

說明使用repr()就能將值轉換為python合法形式表示式的字串。

ⅱ.str(),將值轉換為合理形式的字串;

print str(1000l)              //1000

print str('hello world') //hello world

ⅲ.使用``將值包住也可以實現repr()的效果。

3.input()與raw_input()

input預設輸入的值是合法的python表示式。

input('how are you?')

>>>how are you? fine //name 'fine' id no defined

raw_input會將輸入的資料當做原始資料。

raw_input('how are you?')

>>>how are you? fine // 'fine'

4.長字串

使用```來代替引導就可以實現長字串,長字串可跨多行。

Python學習 學習筆記(一)

python是什麼?人們為和使用python python的缺點 如今誰在使用python 流行的p2p檔案分享系統bitjorrent是乙個python程式。eve online這款大型多人網路遊戲 massively multiplayer online game,mmog 廣泛地使用pytho...

python學習學習筆記一

1,python 是完全物件導向的語言。在python中一切都是物件,函式 模組 字串等都是物件。2,資料型別 數字,字串,列表,元組,字典 數字型 整型 浮點型 布林型 非零即真 複數型 int x float x 型別轉換 非數字型 字串 列表 元祖 字典 list 元祖 元祖轉列表 tuple...

Python學習筆記 一

python學習筆記 一 關鍵知識點 1 程式列印輸出使用print語句 2 使用print輸出字串時,字串內容不帶引號。而使用字串變數名輸出時,字串內容由引號括起來 3 在python 解析器中下劃線 表示最後乙個表示式的值 4 重定向輸出符合為 5 程式中需要輸入時,實用raw input 內建...