Python-語法模板大全(常用)

来源:https://www.cnblogs.com/haochen273/archive/2019/01/11/10256418.html
-Advertisement-
Play Games

[TOC] 1.怎麼存數據 變數: age =10 字元串: name = "python" 列表: [1,2,3,"python"] 元組: (1,2,3)(不可以更改) 字典: {"a":100, "b":"666"} 2.怎麼用數據 數字操作符: +、 、 、/、%、//、\ \ 判斷迴圈: ...


目錄

1.怎麼存數據

  • 變數: age =10
  • 字元串: name = "python"
  • 列表: [1,2,3,"python"]
  • 元組: (1,2,3)(不可以更改)
  • 字典: {"a":100, "b":"666"}

2.怎麼用數據

  • 數字操作符: +、-、*、/、%、//、**
  • 判斷迴圈:
    • if判斷:
    if a>10:
    b = a + 20
    if b>20:
      pass
    elif: a>8:
    pass
    else:
    pass
    • while迴圈
while i<5:
  # do something
  pass
  i = i + 1

while true:
  pass

3.函數

# 位置參數  
def person(name, age):
  print(name,age)

# 預設參數  

def person(name,age=20):
  print(name, age)

# 關鍵字參數
def person(name, age, **kw):
    print('name:', name, 'age:', age, 'other:', kw)  

person('hao', 20) # name: Michael age: 30 other: {}
person('hao', 20, gener = 'M', job = 'Engineer') # name: Adam age: 45 other: {'gender': 'M', 'job': 'Engineer'}  
extra = {'city': 'Beijing', 'job': 'Engineer'}
person('Jack', 24, **extra)  

# 命名關鍵字參數
def person(name, age, *, city='Beijing', job):
    print(name, age, city, job)

person('Jack', 24, job = '123')
person('Jack', 24, city = 'Beijing', job = 'Engineer')

# Combination
# 可變 + 關鍵字參數
def f1(a, b, c=0, *args, **kw):
    print('a =', a, 'b =', b, 'c =', c, 'args =', args, 'kw =', kw)

f1(1, 2, 3, 'a', 'b')   # a = 1 b = 2 c = 3 args = ('a', 'b') kw = {'x': 99}
f1(1, 2, 3, 'a', 'b', x=99) # a = 1 b = 2 c = 0 d = 99 kw = {'ext': None}

# 預設參數 + 命名關鍵字參數 + 關鍵字參數
def f2(a, b, c=0, *, d, **kw):
    print('a =', a, 'b =', b, 'c =', c, 'd =', d, 'kw =', kw)

f2(1, 2, d=99, ext=None) # a = 1 b = 2 c = 0 d = 99 kw = {'ext': None}

4. 類和對象

4.1. 定義類的模板

class Student(object):
    def __init__(self, name, score):
        self.__name = name
        self.__score = score

    # print(mike)
    def __str__(self):
        msg = "name: " + self.__name + "score: " + str(self.__score)
        return msg

    # mike
    __repr__ = __str__
    # mike()
    __call__ = __str__

    @property
    def name(self):
        return self.__name

    @name.setter
    def name(self, value):
        if type(value) == str:
            self.__name = value
        else:
            raise ValueError('Bad name')

    @property
    def score(self):
        return self.__score

    @score.setter
    def score(self, value):
        if 0 <= value <= 100:
            self.__score = value
        else:
            raise ValueError('Bad score')

    def final_report(self):
        if self.__score >= 90:
            level = 'A'
        elif self.__score >= 70:
            level = 'B'
        elif self.__score >= 60:
            level = 'C'
        else:
            level = 'D'
        msg = "Your final value is: " + level
        return msg

# 調用

mike = Student('mike', 85)
print("-" * 20 + "Print property" + "-" * 20)
print(mike)
print("name: %s" % (mike.name))
print("-" * 30 + "Print methods" + "-" * 20)
print(mike.final_report())
print("-" * 30 + "Print modified infor" + "-" * 20)
mike.name = "Obama"
mike.score = 50
print("-" * 30)
print("modified name: %s" % (mike.name))
--------------------Print property--------------------
name: mikescore: 85
name: mike
------------------------------Print methods--------------------
Your final value is: B
------------------------------Print modified infor--------------------
------------------------------
modified name: Obama

4.2.繼承

class SixGrade(Student):
    def __init__(self, name, score, grade):
        super().__init__(name, score)
        self.__grade = grade

    # grade是一個只讀屬性
    @property
    def grade(self):
        return self.__grade

    def final_report(self, comments):
        # 子類中調用父類方法
        text_from_Father = super().final_report()
        print(text_from_Father)
        msg = "commants from teacher: " + comments
        print(msg)

print("-" * 20 + "繼承" + "-" * 20)
fangfang = SixGrade('fang', 95, 6)
fangfang.final_report("You are handsome")
print(fangfang.grade)
--------------------繼承--------------------
Your final value is: A
commants from teacher: You are handsome
6

4.3 多態

class SixGrade(Student):
    pass
    
class FiveGrade(Student):
    pass
    
def print_level(Student):
    msg = Student.final_report()
    print(msg)
    
print_level(Student('from class', 90))
print_level(SixGrade('from subclass-1', 56))
print_level(FiveGrade('from subclass-2', 85))
Your final value is: A
Your final value is: D
Your final value is: B

5. IO文件操作和OS目錄操作

OS操作

import os
# 獲取當前目錄的絕對路徑 
path = os.path.abspath('.')
# 創建一個目錄
os.path.join('/Users/michael', 'testdir')
os.mkdir('/Users/michael/testdir')
# 刪除一個目錄
os.rmdir('/Users/michael/testdir')
# 拆分路徑
os.path.split('/Users/michael/testdir/file.txt')  # ('/Users/michael/testdir', 'file.txt')
os.path.splitext('/path/to/file.txt')  # ('/path/to/file', '.txt')
# 重命名
os.rename('test.txt', 'test.py')
# 刪除文件
os.remove('test.py')
# 列出所有python文件
[x for x in os.listdir('.') if os.path.isfile(x) and os.path.splitext(x)[1]=='.py']

IO文件

方法 特性 性能
read() 讀取全部內容 一般
readline() 每次讀出一行內容 占用記憶體最少
readlines() 讀取整個文件所有行,保存在一個列表(list)變數中,每行作為一個元素 最好(記憶體足)
write() 寫文件
# 讀

# 下麵是read()方法的使用,“r”表示read
with open('testRead.txt', 'r', encoding='UTF-8') as f1:
    results = f1.read()    # 讀取數據
    print(results)

# 下麵是readline()方法的使用,“r”表示read
with open('testRead.txt', 'r', encoding='UTF-8') as f2:
    line = f2.readline()    # 讀取第一行
    while line is not None and line != '':
        print(line)
        line = f2.readline()    # 讀取下一行

# 下麵是readlines()方法的使用,“r”表示read
with open('testRead.txt', 'r', encoding='UTF-8') as f3:
    lines = f3.readlines()    # 接收數據
    for line in lines:     # 遍曆數據
        print(line)

# 寫

with open('/User/test.txt', 'w') as f:
  f.write('hello')

6. 正則表達式及re模塊的使用

主要參考資料為:

6.2. re模塊的使用

內置的 re 模塊來使用正則表達式,提供了很多內置函數:

  1. pattern = re.compile(pattern[, flag]):
  • 參數:
    • pattern: 字元串形式的正則
    • flag: 可選模式,表示匹配模式
  • 例子:
import re

pattern = re.compile(r'\d+')
  1. Pattern的常用方法
import re

pattern = re.compile(r'\d+')

m0 = pattern.match('one12twothree34four')
m = pattern.match('one12twothree34four', 3, 10)

print("-" * 15 + "Match methods" + "-" * 15)
print("found strings: ", m.group(0))
print("start index of found strings: ", m.start(0))
print("end index of found strings: ", m.end(0))
print("Span length of found strigns: ", m.span(0))

s = pattern.search('one12twothree34four')

print("-" * 15 + "Search methods" + "-" * 15)
print("found strings: ", s.group(0))
print("start index of found strings: ", s.start(0))
print("end index of found strings: ", s.end(0))
print("Span length of found strigns: ", s.span(0))

f = pattern.findall('one1two2three3four4', 0, 10)

print("-" * 15 + "findall methods" + "-" * 15)
print("found strings: ", f)

f_i = pattern.finditer('one1two2three3four4', 0, 10)

print("-" * 15 + "finditer methods" + "-" * 15)
print("type of method: ", type(f_i))
for m1 in f_i:  # m1 是 Match 對象
    print('matching string: {}, position: {}'.format(m1.group(), m1.span()))

p = re.compile(r'[\s\,\;]+')
print("-" * 15 + "Split methods" + "-" * 15)
print("split a,b;c.d: ", p.split('a,b;; c   d'))

p1 = re.compile(r'(\w+) (\w+)')
s1 = 'hello 123, hello 456'


def func(m):
    return 'hi' + ' ' + m.group(2)


print("-" * 15 + "替換 methods" + "-" * 15)
print(p1.sub(r'hello world', s1))  # 使用 'hello world' 替換 'hello 123' 和 'hello 456'
print(p1.sub(r'\2 \1', s1))  # 引用分組
print(p1.sub(func, s1))
print(p1.sub(func, s1, 1))  # 最多替換一次

結果是:

---------------Match methods---------------
found strings:  12
start index of found strings:  3
end index of found strings:  5
Span length of found strigns:  (3, 5)
---------------Search methods---------------
found strings:  12
start index of found strings:  3
end index of found strings:  5
Span length of found strigns:  (3, 5)
---------------findall methods---------------
found strings:  ['1', '2']
---------------finditer methods---------------
type of method:  <class 'callable_iterator'>
matching string: 1, position: (3, 4)
matching string: 2, position: (7, 8)
---------------Split methods---------------
split a,b;c.d:  ['a', 'b', 'c', 'd']
---------------替換 methods---------------
hello world, hello world
123 hello, 456 hello
hi 123, hi 456
hi 123, hello 456

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1 JDK安裝 zookeeper是運行在JDK環境下的,安裝zookeeper前需要安裝JDK 下載linux的 jdk1.8.tar,上傳至linux伺服器 解壓縮jdk,配置jdk tar -zxvf 解壓縮jdk 將jdk1.8.0_191重命名為jdk8 mv jdk1.8.0_191/ ...
  • 定義資料庫 在Django中使用多個資料庫的第一步是告訴Django您將要使用的資料庫伺服器。 資料庫可以有您選擇的任何別名。但是,別名 default 有著特殊的意義。Django使用別名為 default 為預設資料庫。 例如 settings.py 定義兩個資料庫,預設 PostgreSQL ...
  • 安裝虛擬環境的命令如下: sudo pip install virtualenv sudo pip install virtualenvwrapper 創建虛擬環境的命令如下: mkvirtualenv 虛擬環境名稱 例: mkvirtualenv hj_django 退出虛擬環境的命令如下: de ...
  • for 迴圈 功能 for 迴圈是一種迭代迴圈機制,迭代即重覆相同的邏輯操作,每次的操作都是基於上一次的結果而進行的。並且for迴圈可以遍歷任何序列的項目,如一個列表或者一個字元串 語法 for 迴圈的一般格式如下: for <variable> in <sequence> <staements> ...
  • Python入門 以下主要講述Python的一些基礎語法,包含行的縮進在python中的重要意義,python中常見的保留字和引號的使用,如何實現單行註釋和多行註釋。 print("hello,Python!") 第一個Python程式 我們在創建python文件時,所有的文件必須以.py為拓展名。 ...
  • a)ThresholdFilter屬性:onMatch表示匹配設定的日誌級別後是DENY還是ACCEPT,onMismatch表示不匹配設定的日誌級別是DENY還是ACCEPT還是NEUTRAL b)上面說的match/misMatch指的是高於或等於設定的日誌級別。所以,要先定義日誌級別高的Fil... ...
  • 1.簡介 Phoenix是一個HBase框架,可以通過SQL的方式來操作HBase。 Phoenix是構建在HBase上的一個SQL層,是內嵌在HBase中的JDBC驅動,能夠讓用戶使用標準的JDBC來操作HBase。 Phoenix使用JAVA語言進行編寫,其查詢引擎會將SQL查詢語句轉換成一個或 ...
  • 「題意」給你一棵樹,每次詢問若在在選中的k個點兩兩連接無相邊,邊權為原來樹上的點對距離,求這些邊的:1)權值和 2)最短的邊 3)最長的邊。所有k之和$\le$2 n。 「分析」虛樹模板題。(但是獨立寫出來還是很振奮人心的合)直接考慮對虛樹dp,設pmn[x]為x到x的子樹內的關鍵點的最短距離,pm ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...