1. 程式人生 > 實用技巧 >Linux 中的軟連結與硬連結

Linux 中的軟連結與硬連結

技術標籤:Python

輸出

print

1、列印字串

#輸出指定字串
print ('hello world!')

2、成串輸出,會依次列印每個字串,遇到","會輸出空格。

#成串輸出,用逗號隔開
print ('你好,陌生人','你在做嘛耶?')

3、列印整數/計算結果

#列印整數/計算結果
print (300)
print (2*5)

輸入

1、讓使用者輸入一個字串並存放在一個變數中

name = input ()
print (name)

2、輸入前顯示提示資訊

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

總結

輸入是Input,輸出是Output,因此,我們把輸入輸出統稱為Input/Output,或者簡寫為IO。

練習

請利用print()輸出1024 * 768 = xxx

print ('1024*768=',1024 * 768)