————————————————
1.type(變數)
2.三個引號 『』』 『』』
3.[0:3]
[0:] 0到末尾
[:] 全部
4.f』』 佔位符
5.len()
6. .find(』 』) 找到這個字元的索引
若『 』中為一串字元,則返回第乙個字元的索引
若『 』沒有,則返回-1
.replace('原』,『新』) 若沒有,則不替換
7.『 』 in 變數 返回乙個布林值
8.10/3 = 3.333
10//3 = 3
** 冪
9.round() 四捨五入
abs()
10.
import math
math.ceil(
) 封math.floor(
) 底
def 小寫字母.()
: ×××接兩個回車
先定義函式後才可引用,(
)中可以加引數,如(name)
,呼叫時需要傳乙個值如(
"mosh"
)沒有return的函式預設返回none
22.用try…expect來處理異常錯誤
try:
×××expect valueerror:
print
(" "
)expect ×××:
×××
23.class定義乙個類,首字母大寫,不用下劃線
def定義乙個函式,首字母小寫,用下劃線鏈結
class
point
:def ×××(self, ×××)
: ×××
def ×××
point1 = point(
)point1.×××(
)可以在程式的任何位置設定屬性
point1.××× =
10def
__init__
(self, x, y)
: self.x = x
self.y = y
point1 = point(10,
20)
24.繼承
class
normal
:def
walk
(self)
: ×××
class
dog(normal)
:pass
class
cat(normal)
:def
bark
(self)
:print
("×××"
)
25.呼叫模組
import hello
hello.×××(
)from hello import ×××
×××(
)import hello as he
he.×××(
)
26.建立乙個包
① new → directory → __init__.py
② new → python package
import 包.檔案
包.檔案.函式(
)from 包.檔案 import 函式
函式()
from 包 import 檔案.函式
檔案.函式(
)
27.內建模組的呼叫舉例
import random
random.random(
) 隨機跳出乙個0和1間的數字
random.randint(10,
20)10到20間的乙個整數值
random.choice(numbers) 假如numbers是乙個列表,則隨機跳出列表中的乙個元素
28.pypi.org 引用舉例
import random
random.random(
) 隨機跳出乙個0和1間的數字
random.randint(10,
20)10到20間的乙個整數值
random.choice(numbers) 假如numbers是乙個列表,則隨機跳出列表中的乙個元素
python入門 基礎語法
一 變數 定義字串要加單引號 變數命名規範 變數名只能是字母 數字或下劃線的任意組合 變數名的第乙個字元不能是數字 變數名不能用關鍵字 變數名不要用中文 變數名不要太長,區分大小寫 面就用單引號 如果既有單又有雙,那麼用三引號 三引號用來多行注釋 單行注釋,使用 三 使用者互動 變數 input 提...
最詳細的Python入門基礎語法總結!
input 使用者自己輸入值 print 列印值 可以輸出多個變數 d s 用於輸出變數時佔位 字串 後期爬蟲必備 int 把字串轉換為數字 str 把數字轉換為字串 len 獲取某個字元占用的位元組數 字串可以用 連線 字元下標可以為負數 str 起始位置 終止位置 步長 切片,從起始開始擷取字串...
Python 基礎語法總結
預設情況下,python3原始檔以utf 8編碼,所有字串都是unicode字串 當然也可以為原始檔指定不同的編碼 第乙個字母必須是字母表中字母或 識別符號的其他部分由字母 數字和下劃線組成 識別符號對大小寫敏感 在python3中,可以用中文作為變數名,非ascll識別符號也是允許的 保留字即關鍵...