随笔分类 -  Python

摘要:pip install xxx 安装较慢的话,加上国内镜像豆瓣网址: pip install xxx -i https://pypi.douban.com/simple 阅读全文
posted @ 2020-03-18 20:26 Eastsheng 阅读(179) 评论(0) 推荐(0)
摘要:画个太极阴阳鱼 1 import turtle 2 turtle.setup(0.5,0.6,0,0) 3 turtle.speed(10) 4 # #大圆 5 # turtle.penup() 6 # turtle.goto(0,-160) 7 # turtle.pendown() 8 # tur 阅读全文
posted @ 2020-03-17 23:05 Eastsheng 阅读(1356) 评论(0) 推荐(0)
摘要:生成一组具体范围,具体个数的随机数: 1 import random 2 3 random_number = random.sample(range(1,100),10)#random.sample(随机数范围,随机数个数) 4 5 print(random_number) 阅读全文
posted @ 2020-03-16 23:01 Eastsheng 阅读(358) 评论(0) 推荐(0)