python快捷函式

2021-09-20 10:36:58 字數 1071 閱讀 1640

去除空格

去除首尾空格:strip()

去除左邊空格:lstrip()

去除右邊空格:rstrip()

分割字串split()函式

import re

character = " ls, ll la; ll"

cha_list = re.split('[,;\s]',character)

組合2個lst成為字典

dict(zip(lst1,lst2))

有序字典

form collections import ordereddict

dict_order = collections.ordereddict()

讀取json時保持原有順序

import json

from collections import ordereddict

data = json.load(text, object_pairs_hook=ordereddict)

計算字元數 count()

str = 「helloworld,welcome!」

e_count = str.count(「e」)

獲取當前時間

import datetime

nowtime=datetime.datetime.now()

nowtime.strftime("%y%m%d %h:%m:%s")

學習鏈結

快速轉化字串為列表 eval()

text = 「[1,2,4]」

text_lst = eval(text)

replace()替換字元

text = 「hello」

text1 = text.replace(「h」, 「y」)

注意:replace()不會改變原字元的內容

python 快捷函式使用

url 1,for d,x in dict.items print key d value str x 2,for d,x in dict.items print key d value str x list dict 轉換 names n1 n2 n3 values 1,2,3 nvs zip n...

python注釋快捷 python注釋快捷鍵

python多行 注釋快捷鍵 選中要注釋的 按下ctrl 注釋 python 多行注釋 注釋是每乙個程式必要的部分,也是乙個好程式設計師的習慣,有以下3種方式 1.注視內容 這一種最強大 2.快捷鍵alt 3,需要首先選中要注釋的行 3.自己寫乙個函式,然後把內容丟進去,自動新增 python中的注...

tp快捷函式

1.關於js和css路徑問題 找路徑是從入口檔案index.php來找的 在存放js和css的時候可以放到public資料夾下 2.第三方類引入 有兩塊地方可以放第三方類 1 模組下面 2 library下面新建資料夾或者舊的資料夾裡面 放進去之後,需要新增命名空間,命名空間從根命名空間寫起 注意類...