摘要:
X y 点 逆时针旋转b角到c d 如下 c= xcos(β)-ysin(β) d= ycos(β)+xsin(β) 顺时针也即坐标轴逆时针 s = os = oa + as = x cos(theta) + y sin(theta) t = ot = ay – ab = y cos(theta) 阅读全文
摘要:
每5个输出,加换行 加格式。 zhu 另一个答案 其他的答案正在寻找 有机会深入学一下format语句 阅读全文
摘要:
角度转弧度radians pi值 阅读全文
摘要:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple C:\Users\mu\pip 新建pip.ini 阅读全文
摘要:
import time time_start=time.time() time_end=time.time() print('totally cost',time_end-time_start) 阅读全文
摘要:
array 的创建可以通过list给 array print出来像一个表格,可以按行按列来观察。 原来是一个list相当于一行 np.where用于寻找一个condition下的坐标,返回的是一个2个元素的tuple,第一个元素是一个array,第二个是数据类型 代码的作用是找到返回的下标里的最大值 阅读全文
摘要:
对某一个位置排列 此方法针对按每个list排列,按照第一列元素排序。 阅读全文
摘要:
mat = "{:20}\t{:28}\t{:32}" print(mat.format("占4个长度","占8个长度", "占12长度")) #如果需要居中输出在宽度前面加一个^ mat = "{:^20}\t{:^28}\t{:^32}" print(mat.format("占4个长度","占8个长度", "占12长度")) 阅读全文
摘要:
主要过程是读取的时候是一行字符串,需要Strip去除空格等,然后split变成一个List。 注意这时候数据结构是List但是每一个元素是Str性质的。 所以需要map(float,List) 把这个List变成一个新的List,里面每一个元素是Float类型的 然后write函数只能接受一个元素。 阅读全文
摘要:
用自带的os模块或者分割split 路径 - - 注意python里获得的路径是/ 而不是\ RESTART: C:\Users\AN\Desktop\learn Python\IDEL.py testtest>>> 阅读全文