json是python的內建模組
import json
json.loads() # 將 字串 轉換為 字典
new_dict = json.loads(json_str)
json.load() #把檔案開啟,並把字串變換為資料型別
1
with
open
("../config/record.json"
,'r'
)as load_f:
2 load_dict = json.load(load_f)
3print
(load_dict)
json.dumps() #將python中的 字典 轉換為 json字串
3 test_dict =]}
7 json_str = json.dumps(test_dict)
json.dump() #將資料寫入json檔案中
1
with
open
("../config/record.json"
,"w"
)as f:
2 json.dump(new_dict,f)
3print
("加載入檔案完成..."
)
2.給定乙個字串**,然後使用 exec() 來執行字串**。
def
exec_code()
: loc =
"""
def factorial(num):
fact=1
for i in range(1,num+1):
fact = fact*i
return fact
print(factorial(5))
"""exec
(loc)
exec_code(
)
3.正規表示式
首先,python的內建模組re
re.sub(pattern, repl, string, count=0, flags=0)
pattern : 正則中的模式字串。
repl : 替換的字串,也可為乙個函式。
string : 要被查詢替換的原始字串。
count : 模式匹配後替換的最大次數,預設 0 表示替換所有的匹配。
#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
phone =
"2004-959-559 # 這是乙個國外**號碼"
# 刪除字串中的 python注釋
num = re.sub(r'#.*$',""
, phone)
print
"**號碼是: "
, num
# 刪除非數字(-)的字串
num = re.sub(r'\d',""
, phone)
print
"**號碼是 : "
, num
正規表示式 正規表示式 總結
非負整數 d 正整數 0 9 1 9 0 9 非正整數 d 0 負整數 0 9 1 9 0 9 整數 d 非負浮點數 d d 正浮點數 0 9 0 9 1 9 0 9 0 9 1 9 0 9 0 9 0 9 1 9 0 9 非正浮點數 d d 0 0 負浮點數 正浮點數正則式 英文本串 a za z...
正規表示式總結
正規表示式用於操作字串的規則,這些規則由一些符號所組成。使用正規表示式可以進行更複雜的操作,而且這種複雜的操作要比方法短的多。功能 1,匹配。使用的是string類中的matches方法。2,切割。使用的string類split方法。3,替換。4,查詢。1,將正則規則通過pattern類中的stat...
正規表示式總結
常用正規表示式總結 w w w 驗證 號碼 d d d 正確格式為 x x xx x xx x 和 xx 驗證身份證號 15位或18位數字 d d 驗證一年的12個月 0?1 9 1 0 2 正確格式為 01 09 和 1 12 驗證乙個月的31天 0?1 9 1 2 0 9 30 31 正確格式為...