kewin
少儿编程侯老师
这个作者很懒,什么都没留下…
展开
-
kewin -时间的表示
import time# time.time() 记录当前时间的意思# t1 = time.time()# print(t1)# time.sleep(2)## t2 = time.time()# print(t2)# print(t2-t1)# t1 = time.localtime()# print(t1)# print(time.strftime("%Y-%m-%d ...原创 2020-01-12 14:45:13 · 251 阅读 · 0 评论 -
kewin -文件的读取and写入
# 打开这个文件 打开open# 读取 read# f = open('test2','r')# c = f.read()# print(c)# f.close()## # 写入 write# f = open('test2','w')# f.write('abcdefg')# f.close()## 批量将1-10写到test2文件中# y=open('test2','...原创 2020-01-05 14:46:36 · 110 阅读 · 0 评论 -
kewin -文件夹的新建,批量移动,改名
import osimport shutil# os.mkdir('1234567890987654321')# 在桌面新建一个文件夹# 1。写代码新建然后拖动# 2。我们先跳转地址# os.chdir('C:\\Users\\jrcode01\\Desktop')# # os.mkdir('wrer2tr3t6 hj9')# 3.直接地址+文件名新建文件夹# path = 'C...原创 2019-12-29 14:49:42 · 365 阅读 · 0 评论 -
kewin - 学习文件地址
# 新建一个文件夹# fork 炸弹import os# 1.查找文件地址 get cwd current directoryaddr = os.getcwd()print(addr)# 2.新建文件夹 make dir ====》 mkdir# os.mkdir("望着容易")# 3.文件地址 C:\ads# os.mkdir("C:\\Users\\jrcod...原创 2019-12-15 14:45:28 · 105 阅读 · 0 评论 -
kewin -接小球终极版
import pygameimport random# 1.loading 初始化pygame.init()# 2.窗口 dis分开 play玩 ----》 展示screen_width = 960screen_height = 540screen = pygame.display.set_mode((screen_width, screen_height ))# 3.游戏...原创 2019-12-08 14:50:04 · 164 阅读 · 0 评论 -
kewin - 接小球游戏
import pygameimport random# 1.loading 初始化pygame.init()# 2.窗口 dis分开 play玩 ----》 展示screen = pygame.display.set_mode((700, 600))# 3.游戏名字 caption标题pygame.display.set_caption("接小球游戏")ballx1 = 3...原创 2019-11-24 14:44:50 · 262 阅读 · 0 评论 -
kewin-用python函数画太极图
import turtle as tdef yu(radius, color1, color2): t.color("black", color1) # 边的颜色,填充颜色 t.begin_fill() # 开始填充 # circle 圆形 t.circle(radius / 2, 180) t.circle(radius, 180) t....原创 2019-11-17 14:51:14 · 417 阅读 · 0 评论 -
kewin-用python画多啦A梦
# Drawcat 画多啦一梦from turtle import *# 无轨迹跳跃def my_goto(x, y): penup() goto(x, y) pendown()# 眼睛def eyes(): tracer(False) a = 2.5 for i in range(120): if 0 <= i...原创 2019-11-03 14:49:58 · 582 阅读 · 0 评论 -
kewin - python用函数画满天星
import turtleimport randomdef star(): for i in range(5): turtle.fd(a) turtle.right(144)def go(): turtle.penup() turtle.goto(random.randint(-350, 350), random.randint...原创 2019-11-03 14:41:53 · 4871 阅读 · 0 评论 -
kewin-python字典学习
# 字典, 列表 元组 字符串 数字#{'name':'哥斯拉', 'height':180, 'weight':180}team = ['百里守约', '曹操', '扁鹊', '诸葛亮', '赵云']# 键值对# 增 删 改 查dict_name = {'name': '哥斯拉', 'height': 180, 'weight': 180}# 1。查找print(team[0])...原创 2019-10-20 14:49:22 · 185 阅读 · 0 评论 -
kewin-python计算王者荣耀参团率
# 1。选个队伍import randomteam = ['百里守约', '曹操', '扁鹊', '诸葛亮', '赵云']join = []for i in range(random.randint(100,300)): join.append(team[random.randint(0, 4)])print(team)print(join)# 参战率 '扁鹊':15, '赵...原创 2019-10-20 14:48:26 · 206 阅读 · 0 评论 -
kewin-电脑和电脑进行猜数字-列表和循环
import random# 数字 123344# 字符串 ''# 列表 [ ]# 布尔表达式 True False# 元组 ( )result = []for w in range(100): com1 = random.randint(1, 100) maxNum = 100 a=1 for i in range(100): ...原创 2019-10-13 14:50:30 · 265 阅读 · 0 评论