导航

2022年12月8日

摘要: # 乐透生成器 模块 # 导入随机模块 import random # 生成一注乐透号码的方法 def Lotto(): # 生成前区5个蓝球,从小打到排序 blue = random.sample(range(1, 36), 5) blue.sort() # 生成后区2个红球,,从小打到排序 re 阅读全文

posted @ 2022-12-08 22:09 寻找内啡肽 阅读(20) 评论(0) 推荐(0) 编辑

摘要: class Phone: def __init__(self): print("智能手机的默认语言为英文") def cellphone(self,setlanguage): print("将智能手机的默认语言设置为"+setlanguage) Phone().cellphone("中文") cla 阅读全文

posted @ 2022-12-08 21:13 寻找内啡肽 阅读(10) 评论(0) 推荐(0) 编辑

摘要: def act(actor): #定义函数 print(actor+"开始参演这个剧本") A = input("导演选定的角色是:") act(A) #调用函数 def taocan(a,b,c,d,e,f): print('米线店套餐如下:1.'+ a + '2.' + c + '3.' +e) 阅读全文

posted @ 2022-12-08 19:15 寻找内啡肽 阅读(13) 评论(0) 推荐(0) 编辑

摘要: str1 = '马走日' str2 = ',' str3 = '象走田' str4 = ',' str5 = '小卒一去不复还' str6 = '。' print("象棋口诀"+':') print(str1 + str2) print(str3 + str4) print(str5 + str6) 阅读全文

posted @ 2022-12-08 19:09 寻找内啡肽 阅读(10) 评论(0) 推荐(0) 编辑

摘要: # 绘制七段数码管 import turtle as t import time def drawGap(): # 绘制数码管间隔的函数 t.penup() t.fd(5) def drawLine(draw): # 单个线段的绘制 drawGap() # 在线段绘制前,分隔一段距离 t.pendo 阅读全文

posted @ 2022-12-08 18:56 寻找内啡肽 阅读(90) 评论(0) 推荐(0) 编辑