◆主題1:◆第1支程式
字串、整數及變數。
► 流程圖繪製:
►參考程式:
print("白熊")
print("黑熊")
============================
print(" /|")
print(" / |")
print("/_|")
============================
print("白熊今年8歲")
print("白熊身高168公分")
print("白熊喜歡自己8歲")
============================
name = "白熊"
age = 8
is_male = Ture
print("有一隻叫" + name)
print(name + "今年8歲")
print(name + "身高168公分")
print(name + "喜歡自己8歲")
►說明:
1. 紅色的部分稱「字串」。
2. name、age稱「變數」,print會以它們的值呈現。
3. input()是請求鍵盤輸入,print()是印出資訊。
4. int()是將輸入的字串轉成整數。
◆主題2:◆整數加法
假設我們有兩個整數x和y,要求輸出x+y的結果。
► 流程圖:
►參考程式:
x= int(input("請輸入x值:"))
y= int(input("請輸入y值:"))
print("x值:",x)
print("y值:",y)
z = x + y
print("z = x + y =",z)
►說明:
1. 紅色的部分稱“字串”,會忠實地顯示在結果畫面上。
2. x、y、z稱“變數”,會以它們的值呈現。
3. input()是請求鍵盤輸入,print()是印出資訊。
4. int( )是將輸入的字串轉成整數(鍵盤輸入的都視為“字串”。
►執行情形:
►線上Python編輯器:
1. https://colab.research.google.com/2. https://www.programiz.com/python-programming/online-compiler/
沒有留言:
張貼留言