- 博客(4)
- 收藏
- 关注
原创 《python编程快速上手——让繁琐工作自动化》8.6.2 编写自己的乘法测试
import time, random tries= 0 correct = 0 numberOfQuestion = 10 for i in range(1, numberOfQuestion+1): num1 =random.randint(0, 9) num2 = random.randint(0, 9) while True: print(f'#{i}: {num1} * {num2} = ?') T1 = time.time() .
2022-05-14 16:02:46 321 3
原创 《python编程快速上手——让繁琐工作自动化》8.6.1 三明治机
import pyinputplus as pyip # Price dictionary bread_dict = {'wheat':12, 'white':10, 'sourdough':11} protein_dict = {'chicken': 25, 'turkey': 29, 'ham': 20, 'tofu': 10} cheese_dict = {'cheddar': 18, 'Swiss': 16, 'mozzarella': 15} bread_response = pyip.inp.
2022-05-13 18:37:48 590
原创 《python编程快速上手——让繁琐工作自动化》7.18.3 strip()的正则表达式
import re def Strip(str_1, str_2= ''): if str_2: stripRegex = re.compile(str_2) mo = stripRegex.sub('', str_1) return mo else: stripRegex = re.compile(r'^(\s*)(.*)(\s*)$') mo = stripRegex.search(str_1) .
2022-05-12 16:00:32 300
原创 《python编程快速上手 让繁琐工作自动化》第七章7.18.2强口令检测
《python编程快速上手 让繁琐工作自动化》第七章7.18.2强口令检测参考了很多博主的答案,做了一些小改动,个人觉得这个还算比较靠谱,不足之处还请大佬多指教
2022-05-11 18:23:34 196
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人