import re
email_list = ["[email protected]", "[email protected]", "[email protected]"]
for email in email_list:
# ret = re.match("[\w]@163\.com$", email)
# ret = re.match(r'^[0-9a-za-z_]@[0-9a-za-z]\.[com,cn,net]$', email)
# ret = re.match(r'^[\w]@[0-9a-za-z]\.[com,cn,net]$', email)
ret = re.match(r'^[\w]@(?:qq|163|126)\.[com,cn,net]$', email)
# ret = re.match("[\w]@[163,qq]+\.com$", email)
if ret:
print("%s 是符合規定的郵件位址,匹配後的結果是:%s" % (email, ret.group()))
else:
print("%s 不符合要求" % email)
import re
str = "15827325743"
print(re.match(r"^1[3-9]\d$", str).group())
for i in range(1,10):
for j in range(1,i+1):
print("%s*%s=%s"%(i,j,i*j),end=" ")
print()
print ("\n".join("\t".join(["%s*%s=%s" %(x,y,x*y) for y in range(1, x+1)]) for x in range(1, 10)))
list = [1, 2, 3, 4, 5, 6, 5, 4, 3, ]
deffun
(list):
for i in range(len(list) - 1):
for j in range(len(list) - i - 1):
if list[j] > list[j + 1]:
list[j], list[j + 1] = list[j + 1], list[j]
fun(list)
print(list)
print([a+b for a in ["a","b","c"] for b in["x", "y", "z"]])
daibuchong
i,j = 1,1
while i < 1000:
print(i)
i,j = j,i+j
nums = [2, 7, 11, 15]
class
solution
(object):
deftwosum
(self, nums, target):
if len(nums) <= 1:
return
false
buff_dict = {}
for i in range(len(nums)):
if nums[i] in buff_dict:
return [buff_dict[nums[i]], i]
else:
buff_dict[target - nums[i]] = i
a1 = solution()
print(a1.twosum(nums,13))
#! /usr/bin/env python
# *-* coding: utf-8 *-*
a = [1, 2, 3, 4, 5, 5, 5, 3, 4]
b = list(.keys())
print("取最大值", max(b))
print("利用字典去重後得到的結果", b)
b1_dict =
print("拿到的字典", b1_dict)
# 將b1這個字典按值的大小進行排序
sorted_dict = sorted(b1_dict.items(), key=lambda x: x[1], reverse=true)
print("排序的字典", sorted_dict[0:2])
# 排序(出現頻率前三的)
from collections import counter
c = counter(a).most_common(3)
print(c)
"""取最大值 5
利用字典去重後得到的結果 [1, 2, 3, 4, 5]
拿到的字典
排序的字典 [(5, 3), (3, 2)]
[(5, 3), (3, 2), (4, 2)]
"""
2019 5 20未命名檔案
新建模板 小書匠歡迎使用小書匠 xiaoshujiang 編輯器,您可以通過小書匠主按鈕 模板裡的模板管理來改變新建文章的內容。joinablequeue實現生產者消費者模型 1 使用queue實現的 import time import random from multiprocessing im...
2018 9 11未命名檔案
新建模板 小書匠預 測 1 0實 1 true positive tp false negative fn 際 0 false positive fp true negative tn true positive 真正,tp 將正類 為正類數.true negative 真負 tn 將負類 為負類數...
指令碼未命名
根據不同型別的攻擊計算傷害public int calculatedamage int type float ratio else if type 4 kplayer.i.hitlife int 500 ratio else if type 5 表示匕首攻擊力 return damage publi...