學習每一個程式的一開始都是從印出hello world開始,要印出它就必須用到該程式語言的輸出function。
在Python就是使用print()。print()最基本的用法就是在裡面放字串。
1、文字區隔
print 所印出來的文字預設是用空白鍵來作區隔
print('hello world',13)
結果會印出hello world 13
如果要用其他方法來作區隔,則使用sep來指定
print('hello world',13 ,sep= '!!!')
結果hello world!!!13
2、 換行
兩個print之間會換行,預設是印出新行,如果要另外指定,則使用end
print('hello world',13 )
print(34)
print('hello world',13 ,end = '####')
print(34)
結果:
hello world 13
34
hello world 13####34
像Hello world 這種簡單的print 在Java裡是這樣
public static void main(String[] args) {
System.out.println("Hello! World!");
}
可以看出Python在讓初學者能在這方面更快速理解程式碼所表達出的意義