《python编程快速上手——让繁琐工作自动化》
MaEleven
这个作者很懒,什么都没留下…
展开
-
《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 · 320 阅读 · 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 · 584 阅读 · 0 评论 -
《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 · 298 阅读 · 0 评论