1. 程式人生 > >print() 和 input()

print() 和 input()

1. print()函式

(1) 輸出字串;

print('hello world!')

輸出:hello world!

(2) 輸出多個字串,用逗號“,”隔開,遇到逗號會輸出一個空格;

print('The quick brown fox', 'jumps over', 'the lazy dog')

輸出:The quick brown fox jumps over the lazy dog

(3) 輸出整數或計算結果;

print(100 + 200) or print(300)

輸出:300

2. input()函式

name = input('
please enter your name: ') print('hello,', name)

  程式一執行,會首先打印出“please enter your name: ”,使用者可以根據提示輸入名字,得到hello, xxx的輸出,如下圖: