摘要:
import requests url = "https://cn.bing.com/" for i in range(20): response = requests.get(url) print("返回状态:", response.status_code) print("文本内容:", resp 阅读全文
摘要:
import turtle, datetime def drawLine(draw): turtle.pendown() if draw else turtle.penup() turtle.fd(40) turtle.right(90) def drawDigit(digit): drawLine 阅读全文
摘要:
#03超市抹零行为money_all=56.75+72.91+88.5+26.37+68.51money_all_str=str(money_all)print("商品总金额:"+money_all_str)money_real=int(money_all)money_real_str=str(mo 阅读全文