python基礎 print 函式基本用法

2021-10-03 06:35:34 字數 2286 閱讀 2794

print 值相加, 相乘

print是列印的意思,在這裡指的是向螢幕上輸出指定的文字

print 可以列印單個值,也可以列印多個值,還可以設定以什麼字元作為多個值之間的分隔.

docstring: print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=false)

>>

>

print

(100

)#直接輸出數字

100>>

>

print

('dongdong.jiang'

)#直接輸出字串

dongdong.jiang

>>

> a=

'dd.jiang'

#定義變數a並賦值

>>

>

print

(a)#輸出變數的值

dd.jiang

未使用sep分隔符 - 當print輸出多個value時, 預設值之間使用空格分開

>>

>

print

('武漢'

,'加油'

)# 使用print輸出多個值

武漢 加油

使用sep分隔符 - 當print輸出多個value時:

>>

>

print

('武漢'

,'加油'

, sep=

'!! !!'

)武漢!! !!加油

print

('iron man'

,'sideman'

,'hulk'

, sep=

'====>'

, end=

'!! '

)## 原本 end 隱含為\n換行, 現在我們指定 end='......' 且不換行了.

print

('captian'

, end=

'......'

)print

('superman'

)print

('batman'

)

輸出結果:

iron man====>sideman====>hulk!! captian…superman

batman

print中新增相乘, 輸出結果將輸出n次

>>

>

print

('武漢加油!!!!!!!'*5

)武漢加油!!!!!!!武漢加油!!!!!!!武漢加油!!!!!!!武漢加油!!!!!!!武漢加油!!!!!!!

print值相加, 把多個值進行 「無縫拼接」 在一起

>>

>

print

('武漢'

+ a )

武漢dd.jiang

我們知道變數』a』的值是一串字元,但是,噹噹我們用 「字串」 + 數字, 的時候就不是 無縫拼接的意思了, 注意: 只有字串 和字串之間才可以拼接起來

>>

>

print

(a+3

)traceback (most recent call last)

: file ""

, line 1,in

print

(a+3

)typeerror: can only concatenate str

(not

"int"

) to str

>>

>

>>

>

>>

>

>>

>

print

('a'+3

)traceback (most recent call last)

: file ""

, line 1,in

print

('a'+3

)typeerror: can only concatenate str

(not

"int"

) to str

腦筋急轉彎,那麼數字與數字之間呢?

答: 那當然就是相加嘍.~~

>>

>

print(2

+3)5

python基礎 print 函式

深入print,在python2.x中,print是乙個語句,但是在python 3.x中,它是乙個函式。知道如何運用print函式可以幫助我們減少很多 以達到需要的輸出要求。不使用關鍵字引數 print可以列印任意數量的值 print age age age 18兩個值之間有乙個分隔符 空格 預設...

python 3 基礎 print 函式

最白話的語言來和大家一起學習python print 是python中最常用的輸出方式 待輸出資料 可以是字串,整數,浮點數,字典,元組,列表等 print 一起學python 輸出字串 一起學python print 1412 輸出數字 1412 str string1 print str 輸出變...

python基礎語法 Print

print 輸出語句 作用 將資訊在控制台上列印 列印乙個字串 print 我愛學習 列印多條資料時,用 逗號 隔開,遇到逗號會有乙個空格 print 學習是我快樂 為什麼快樂 因為所以 列印乙個數字 print 123 混合列印 print 123,科學道理 可以執行相應的數 算 print 1 ...