與小卡特一起學python 第2章 記住記憶體和變數 2-1練習
# 三個基本要素 input process output
teacher = "Mr.Morton" #variable name variable name 注意區分大小寫
print(teacher) #Teacher and teacher 變數名不能出現空格,必須是字母或者一個下劃線字元開頭
print("53+28")
print("53+28=",53+28)
First = 5
Second =3
print (First + Second)
Third = First + Second
print (Third) #數值的運算
first="5"
second ="3"
print(first + second) #字元的拼接concatenation
teacher ="Mr.Morton"
print(teacher)
teacher ='Mr.Morton' #""和''是一樣,但要成對出現
print(teacher)
print("cat" +"dog")
long_string ="""Sing a song of sixpence,a pocket full of rye,
Four and twenty blackbirds baked in pie.
When the pie was opened the birds began to sing.
Wasn't that a darnty dish to set before the king?"""
long_string1 ='''Sing a song of sixpence,a pocket full of rye,
Four and twenty blackbirds baked in pie.
When the pie was opened the birds began to sing.
Wasn't that a darnty dish to set before the king?'''
print(long_string) #長字串""""""或者''' ''' triple-quoted string
print(long_string1)
print(teacher)
teacher='Mr.Smith'
print(teacher) #變數的可變性,多變
Score = 7
Score = Score
Score = Score + 1
print(Score)
t='Mr.Morton' #變數名稱要使用容易記的變數名。
x1796vc47blahblah='Mr.Morton'#變數名太長,暈了,一般人記不住
print(t)
print(x1796vc47blahblah)
teacher = "Mr.Morton" #variable name variable name 注意區分大小寫
print(teacher) #Teacher and teacher 變數名不能出現空格,必須是字母或者一個下劃線字元開頭
print("53+28")
print("53+28=",53+28)
First = 5
Second =3
print (First + Second)
Third = First + Second
print (Third) #數值的運算
first="5"
second ="3"
print(first + second) #字元的拼接concatenation
teacher ="Mr.Morton"
print(teacher)
teacher ='Mr.Morton' #""和''是一樣,但要成對出現
print(teacher)
print("cat" +"dog")
long_string ="""Sing a song of sixpence,a pocket full of rye,
Four and twenty blackbirds baked in pie.
When the pie was opened the birds began to sing.
Wasn't that a darnty dish to set before the king?"""
long_string1 ='''Sing a song of sixpence,a pocket full of rye,
Four and twenty blackbirds baked in pie.
When the pie was opened the birds began to sing.
Wasn't that a darnty dish to set before the king?'''
print(long_string) #長字串""""""或者''' ''' triple-quoted string
print(long_string1)
print(teacher)
teacher='Mr.Smith'
print(teacher) #變數的可變性,多變
Score = 7
Score = Score
Score = Score + 1
print(Score)
t='Mr.Morton' #變數名稱要使用容易記的變數名。
x1796vc47blahblah='Mr.Morton'#變數名太長,暈了,一般人記不住
print(t)
print(x1796vc47blahblah)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/220205/viewspace-2065405/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 與小卡特一起學python 第2章 記住記憶體和變數 課後 動手試一試Python記憶體變數
- 一起學習JavaScript (4) 之變數、作用域和記憶體問題JavaScript變數記憶體
- 與小卡特一起學python 第1章 出發吧 課後練習題Python
- 與小卡特一起學python 第16章 圖形 Pygame學習PythonGAM
- 與小卡特一起學python 第3章 基本數學運算Python
- 與小卡特一起學python 第14章 物件Python物件
- 與小卡特一起學python 第11章 巢狀與可變迴圈Python巢狀
- 第4章 變數、作用域和記憶體問題變數記憶體
- 變數、作用域與記憶體變數記憶體
- 與小卡特一起學python 第19章 聲音Python
- 與小卡特一起學python 第20章 使用pyqtPythonQT
- 【Rust學習】記憶體安全探秘:變數的所有權、引用與借用Rust記憶體變數
- Python學習筆記 - 變數Python筆記變數
- 與小卡特一起學python 第17章動畫精靈和碰撞檢測Python動畫
- 與小卡特一起學python 第13章 函式-積木Python函式
- 與小卡特一起學python 第21章 列印格式化與字串Python字串
- 新版紅寶書第四章變數、作用域與記憶體(學習筆記)變數記憶體筆記
- 變數、作用域和記憶體問題變數記憶體
- JNI練習-記憶體溢位記憶體溢位
- 與小卡特一起學python 第1章 出發吧 1-2猜數遊戲Python遊戲
- 與小卡特一起學python 第4章 資料的型別Python型別
- 與小卡特一起學python 第11章 巢狀與可變迴圈 動手試一試Python巢狀
- 與小卡特一起學python 第22章 檔案輸入與輸出Python
- 變數與常量 - Go 學習記錄變數Go
- 與小卡特一起學python 第1章 出發吧 1-1練習我們第一個真正的程式Python
- 與小卡特一起學python 第8章 轉圈圈 FOR迴圈和條件迴圈Python
- Python學習日記-資料型別和變數Python資料型別變數
- 與小卡特一起學python 第14章 物件 動手試一試Python物件
- 與小卡特一起學python 第9章 全都為了你-註釋Python
- javascript:變數、作用域和記憶體問題JavaScript變數記憶體
- javascript變數、作用域和記憶體問題......JavaScript變數記憶體
- 笨辦法學C 練習17:堆和棧的記憶體分配記憶體
- 記住Python變數型別的三種方式Python變數型別
- Python學習小記Python
- 與小卡特一起學Python 第15章 模組 及動手試一試Python
- 與小卡特一起學python 第18章 一種新的輸入-事件Python事件
- 與小卡特一起學python 第8章 動手試一試原始碼Python原始碼
- python中的變數怎樣開闢記憶體Python變數記憶體