python教程004-字串、變數

賈貝貝發表於2019-03-03

本節內容輸入輸出字串:

字串的輸入和輸出
變數的命名
字串與數值相乘
數值和字元的轉換

字串是由單引號或雙引號括起來的組成的,’\n’在字串中表示換行,字串內容可以包含任意字元,三個雙引號或單引號可以輸入多行字串

>>> type('python')
<class 'str'>
>>> print("python is a programming \nlanguages")
python is a programming
languages
>>> '''how old are you?
 this is a newlines
換新行'''
'how old are you? \nthis is a newlines\n換新行'
>>>

變數(variables)的命名由字母數字下劃線構成,且不能以數字開頭。

>>> youname = 'admin'
>>> _first_name = 'anonymous'
>>> 23rr = 'er'
  File "<stdin>", line 1
    23rr = 'er'
       ^
SyntaxError: invalid syntax

當字串與數值進行乘法時,print("go"*3 + "let's go!"),如果數值為0,沒有輸出。

gogogolet's go!

字串和數值之間轉換int(),和str()

a  = int("25")
b = str(25)
print("a=%d"%a)   #print("a={}".format(a))
print(type(a))
print(b)  
print(type(b))

相關文章