與小卡特一起學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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 一起學習JavaScript (4) 之變數、作用域和記憶體問題JavaScript變數記憶體
- 第4章 變數、作用域和記憶體問題變數記憶體
- 變數、作用域與記憶體變數記憶體
- Python學習筆記 - 變數Python筆記變數
- 【Rust學習】記憶體安全探秘:變數的所有權、引用與借用Rust記憶體變數
- 新版紅寶書第四章變數、作用域與記憶體(學習筆記)變數記憶體筆記
- javascript:變數、作用域和記憶體問題JavaScript變數記憶體
- 變數與常量 - Go 學習記錄變數Go
- Python 學習筆記-2-1-變數Python筆記變數
- Java記憶體區域與記憶體溢位異常(JVM學習系列1)Java記憶體溢位JVM
- JVM學習-02-Java記憶體區域與記憶體溢位異常JVMJava記憶體溢位
- Spark學習——記憶體管理Spark記憶體
- 記憶體分配策略學習記憶體
- JS中堆疊記憶體的練習JS記憶體
- Python零基礎學習筆記(三十五)——記憶體修改Python筆記記憶體
- Python 3 學習筆記之——變數作用域、模組和包Python筆記變數
- Python學習筆記|Python之內建變數__name__Python筆記變數
- python學習筆記:第6天 小資料池和編碼轉換Python筆記
- 【JVM學習筆記】垃圾收集器與記憶體分配策略JVM筆記記憶體
- 從記憶體洩露、記憶體溢位和堆外記憶體,JVM優化引數配置引數記憶體洩露記憶體溢位JVM優化
- Go:記憶體管理與記憶體清理Go記憶體
- 聊聊 記憶體模型與記憶體序記憶體模型
- python學習筆記:第4天 列表和元組Python筆記
- 【Java學習筆記】垃圾收集器和記憶體分配策略Java筆記記憶體
- python學習:變數與字串Python變數字串
- Java記憶體區域學習Java記憶體
- php原始碼02 -基本變數與記憶體管理機制PHP原始碼變數記憶體
- JVM學習筆記——自動記憶體管理JVM筆記記憶體
- Golang併發之共享記憶體變數Golang記憶體變數
- 指標:存放記憶體地址的變數指標記憶體變數
- 學習Python,一定要記住這三步!Python
- Python學習筆記(2)慎重使用全域性變數Python筆記變數
- Python3學習筆記3,變數、運算子Python筆記變數
- JavaScript變數,資料和記憶體的相關問題JavaScript變數記憶體
- Tensorflow學習筆記: 變數及共享變數筆記變數
- 共享記憶體對映(linux程式與執行緒學習筆記)記憶體Linux執行緒筆記
- 面試必問併發程式設計記憶體模型JMM與記憶體屏障剖析 學習面試程式設計記憶體模型
- 零基礎學習Python__小甲魚第一課筆記與課後練習Python筆記
- Java記憶體區域和記憶體模型Java記憶體模型