Python3 輸出print與輸入input

2021-09-23 18:27:38 字數 1800 閱讀 9412

print是python裡很基本很常見的乙個操作,它的操作物件是乙個字串。

print(value,…,sep =』』,end =』\ n』,file = sys.stdout,flush = false)

預設情況下,將值列印到流或sys.stdout。

可選關鍵字引數:

file:類檔案物件(stream); 預設為當前的sys.stdout。

sep:在值之間插入的字串,預設為空格。

end:在最後乙個值後附加的字串,預設為換行符。

flush:是否強制重新整理流。

基本格式:

print

(輸出內容)

單引號與雙引號用房相同,若輸出內容中存在單引號或雙引號使用\進行轉義。

三引號「所見即所得」,主要作用是實現換行。

單引號

print

('no.1 tony stark\nno.2 thor odinson\nno.3 steve rogers'

)

雙引號

print

("no.1 tony stark\nno.2 thor odinson\nno.3 steve rogers"

)

三引號

print

('''no.1 tony stark

no.2 thor odinson

no.3 steve rogers'''

)

結果python 支援格式化字串的輸出 ,最基本的用法是將乙個值插入到乙個有字串格式符 %s 的字串中。

print("my name is %s, and i am %d years old." % ('tony',10))
結果python中的 input() 函式,把資料讀到自己的程式裡去。

print

("what is your name?"

,end=

' ')

name =

input()

print

("how old are you?"

,end=

' ')

age =

input()

print

(f"so, your name is and you are years old."

)

結果

name =

input

("what is your name? "

)age =

input

("how old are you? "

)print

(f"so, your name is and you are years old."

)

結果

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,...

python 3 基礎 print 函式

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

python3 print 列印輸出

1 列印字串 print hello world 輸出結果 hello world 2 列印中文字串 print 世界,你好!輸出結果 世界,你好!3 列印變數 a 10 print a 輸出結果 10 4 列印自定義函式值 def add2 x,y return x 2,y 2 print add...