排序
Python俄罗斯方块
Python俄罗斯方块代码: import random import pygame colors = [ (0, 0, 0), (3, 56, 174), (114, 203, 59), (255, 213, 0), (255, 151, 28), (255, 50, 19), ] class Block: x_in_grids = 0 y...
python 批量修改文件名
下载的教程文件 发现排序不合适,默认前面的数字1,11,111之类的浏览时不好看,将数字改为3位序号,001 011import os path = '/root/data/videos/' file_name = os.listdir(path) new_name =''...
Python代码画树
from turtle import * from random import * from math import * class Tree: def __init__(self): setup(1000, 700) bgcolor(1, 1, 1) # 背景色 # ht() # 隐藏turtle speed(10) # 速度 1-10渐...
安装jupyter notebook 过程
在服务器安装docker版本的jupyter:jupyter/docker-stacks: Ready-to-run Docker images containing Jupyter applications (github.com)1、先运行docker命令,运行一个容器,然后用生成的tk登录d...
Python算术运算符及用法详解
算术运算符也即数学运算符,用来对数字进行数学运算,比如加减乘除。下表列出了 Python 支持所有基本算术运算符。 表 1 Python 常用算术运算符 运算符 说明 实例 结果 + 加 12.45 + 15 27.45 ...