Day 5_變數(Variables)
5-1. 宣告一個整數變數並且指派值
式子:
number = 10
print(number)
結果:
10
5-2. 宣告一個字串變數並且指派值給它
式子:
website = 'Simple'
print(website)
結果:
Simple
5-3. 改變數的值
式子:
website = 'simple.com' # 原變數websit的值為'simple.com'
print(website)
website = 'new simple.tw' # 指定一個新的值'new simple.tw'給變數website
print(website)
結果:
simple.com
new simple.tw
5-4. 使用輸入的資料
式子:
name = input("What is your name?")
length = len(name)
print(length)
結果:
What is your name?(123)
3