iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 3
0

學習每一個程式的一開始都是從印出hello world開始,要印出它就必須用到該程式語言的輸出function。
在Python就是使用print()。print()最基本的用法就是在裡面放字串。
https://ithelp.ithome.com.tw/upload/images/20190918/20120877LaS3xND34o.png
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在讓初學者能在這方面更快速理解程式碼所表達出的意義


上一篇
Day2 開發環境設置
下一篇
Day4 Python基本命名規則
系列文
Python初學者的自學筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言