最白話的語言來和大家一起學習python
print( ) 是python中最常用的輸出方式
《待輸出資料》可以是字串,整數,浮點數,字典,元組,列表等
>>
>
print
("一起學python"
)# 輸出字串
一起學python
>>
>
print
(1412
)# 輸出數字
1412
>>
>
str=
'string1'
>>
>
print
(str
)# 輸出變數
string1
>>
> l =[1
,2,'x'
]# 列表
>>
>
print
(l)[1,
2,'x']
>>
> t =(1
,2,'x'
)# 元組
>>
>
print
(t)(1,
2,'x')
>>
> d =
# 字典
>>
>
print
(d)
加號:把多個同型別的資料加起來
乘號:把同型別的資料重複輸出
>>
> str1 =
'hallo'
>>
> str2 =
'world'
>>
>
print
(str1 + str2)
hallo world
>>
>
print
(str1 *2)
hallohallo
方法一
輸出中採用字串格式符號 %
>>
> int1 =
1412
>>
> str1 =
'kid'
>>
>
print
('%s 的代號是 %d'
%(int1,str1)
)kid 的代號是 1412
格式:print(『符號+輸入內容』%(名稱,名稱))
在字串裡面加上相應的符號,輸出結束後用%新增名稱多個名稱用括號括起來然後用逗號隔開
方法二:採用format( )函式
format()函式用於格式化輸出
print( ) 換行
在python中自行換行,如果要取消換行則需要新增乙個變數
end = 』 』
在 』 』 中輸入的內容就是不換行的中間的字元
話不多說我們看吧
>>
>
for i in
range(4):
print
(i)012
3>>
>
for i in
range(4):
print
(i,end='')
0123
>>
>
for i in
range(4):
print
(i,end =
',')0,
1,2,
3
特殊內容:浮點型輸出
浮點型輸出在上面解釋過不過不清楚
下面我們看例項:
#寬度就是位數,精度就是小數點後的位數
>>
>pi =
3.141592653
>>
>
print
('%10.3f'
% pi)
#欄位寬10,精度3
3.142
>>
>
print
("pi = %.*f"%(
3,pi)
)#用*從後面的元組中讀取字段寬度或精度
pi =
3.142
>>
>
print
('%010.3f'
% pi)
#用0填充空白
000003.142
>>
>
print
('%-10.3f'
% pi)
#左對齊
3.142
>>
>
print
('%+f'
% pi)
#顯示正負號
+3.141593
Python3基礎篇 print的使用
在python2中有互動函式raw input 和input 但是在python3中不存在raw input 函式,只有input 函式,下面我們介紹print做格式化的列印 name input input you name age input input you age job input in...
python3內建函式 print
print objects,sep end n file sys.stdout,flush false print objects to the text stream file,separated by sep and followed by end.sep,end,file and flush,...
Python3 輸出print與輸入input
print是python裡很基本很常見的乙個操作,它的操作物件是乙個字串。print value,sep end n file sys.stdout,flush false 預設情況下,將值列印到流或sys.stdout。可選關鍵字引數 file 類檔案物件 stream 預設為當前的sys.std...