1. 變數名不能以數字開頭
2. 變數名大小寫敏感
3. 字串可以是「 也可以是 』
4. 轉意符\ : print(『let\』s go!』)
print(「let』s go!」) #不用轉意符的
str=』c:\\pr\\casdasd\\cascassss\\ccccc』
#簡便方式(新增「r」,原始字串):str = r』c:\pr\casdasd\cascassss\ccccc』
5. 字串多行內容:「」「內容」「」
1. 比較操作符號:
2. 條件分支:
if 條件: 操作
else: 操作
3. while迴圈:
while 條件: 操作
4. 小遊戲**:
#注意縮排風格(暫定採用四個空格!)
import random
secret =random.randint(1,10)
print("------遊戲1.0-----")
temp =input("請輸入數字:")
guess =int(temp)
while guess !=secret:
if guess == secret:
print("win!")
else:
if guess > secret:
print("大了!")
else:
print("小了")
temp = input("再猜猜看:")
guess = int(temp)
print("gameover!")
1. 整形:pathon 3整合了長整形
2. 型別轉化:
a) int()
b) str()
c) float()
3. 顯示型別type()
isinstance(a,int) #返回true或者false
Python學習 學習筆記(一)
python是什麼?人們為和使用python python的缺點 如今誰在使用python 流行的p2p檔案分享系統bitjorrent是乙個python程式。eve online這款大型多人網路遊戲 massively multiplayer online game,mmog 廣泛地使用pytho...
python學習學習筆記一
1,python 是完全物件導向的語言。在python中一切都是物件,函式 模組 字串等都是物件。2,資料型別 數字,字串,列表,元組,字典 數字型 整型 浮點型 布林型 非零即真 複數型 int x float x 型別轉換 非數字型 字串 列表 元祖 字典 list 元祖 元祖轉列表 tuple...
Python學習筆記 一
python學習筆記 一 關鍵知識點 1 程式列印輸出使用print語句 2 使用print輸出字串時,字串內容不帶引號。而使用字串變數名輸出時,字串內容由引號括起來 3 在python 解析器中下劃線 表示最後乙個表示式的值 4 重定向輸出符合為 5 程式中需要輸入時,實用raw input 內建...