编程共25篇
Python代码画树itksw-信息技术考试-测试-it IT考试网

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渐...
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
01090
安装jupyter notebook 过程itksw-信息技术考试-测试-it IT考试网

安装jupyter notebook 过程

在服务器安装docker版本的jupyter:jupyter/docker-stacks: Ready-to-run Docker images containing Jupyter applications (github.com)1、先运行docker命令,运行一个容器,然后用生成的tk登录d...
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou1年前
011612
Python算术运算符及用法详解itksw-信息技术考试-测试-it IT考试网

Python算术运算符及用法详解

算术运算符也即数学运算符,用来对数字进行数学运算,比如加减乘除。下表列出了 Python 支持所有基本算术运算符。 表 1 Python 常用算术运算符 运算符 说明 实例 结果 + 加 12.45 + 15 27.45 ...
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
0900
noip初赛专题:函数与递归类型历年普及组真题讲解itksw-信息技术考试-测试-it IT考试网
python基础课程3itksw-信息技术考试-测试-it IT考试网

python基础课程3

xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
0888
递归和递推-累加计算itksw-信息技术考试-测试-it IT考试网

递归和递推-累加计算

计算: 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<...
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
0460
oj.itksw.cn-python练习1itksw-信息技术考试-测试-it IT考试网

oj.itksw.cn-python练习1

xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
02496
递归-斐波那契数列itksw-信息技术考试-测试-it IT考试网

递归-斐波那契数列

斐波那契数列指的是这样一个数列: 0 1 1 2 3 5 8 13… 自然中的斐波那契数列这个数列从第3项开始,每一项都等于前两项之和,   求第n项数值。 #include <bits/stdc++.h> using name...
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
0630
oj.itksw.cn-python练习2itksw-信息技术考试-测试-it IT考试网

oj.itksw.cn-python练习2

 
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
01046
最大公约数 最小公倍数itksw-信息技术考试-测试-it IT考试网

最大公约数 最小公倍数

最大公约数 最小公倍数 #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...
xiaoyaoyou的头像itksw-信息技术考试-测试-it IT考试网xiaoyaoyou2年前
0570