Oracle dd系统小手册
前提:版本是Canonical Ubuntu 16.04,避免乱七八糟bug 把下面脚本扔进CLOUD-INIT即可,除了系统,其他不更改 #!/bin/bash echo root:Abc123456 |sudo chpasswd root sudo sed -i 's/^#\?Permit...
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渐...
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...
最大公约数 最小公倍数
最大公约数 最小公倍数 #include<bits/stdc++.h> using namespace std; int gcd(int a,int b){ if(b==0) return a; return gcd(b,a%b); } int scm(int a,int b){ if (b==0) return 0; ret...
递归和递推-累加计算
计算: 1+2+3+4+5+6+…+n 递推的写法: #include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int s=0; for(int i=0;i<=n;i++){ s=s+i; } cout<...
Portainer -- Docker可视化管理工具的安装配置及使用
下载Portainer镜像: docker pull docker.io/portainer/portainer Portainer单机版运行十分简单,只需要一条语句即可启动容器,来管理该机器上的docker镜像、容器等数据。 docker run -d -p 9000...
Python算术运算符及用法详解
算术运算符也即数学运算符,用来对数字进行数学运算,比如加减乘除。下表列出了 Python 支持所有基本算术运算符。 表 1 Python 常用算术运算符 运算符 说明 实例 结果 + 加 12.45 + 15 27.45 ...