摘要:
一,使用%操作符 %[(name)][flags][width].[precision]typecode (name)可选,用于选择指定的key flags 可选,可供选择的值有:+右对齐;正数前加正好,负数前加负号;-左对齐;正数前无符号,负数前加负号;空格 右对齐;正数前加空格,负数前加负号;0 阅读全文
摘要:
#使用turtle库绘制并填充一个五角星 from turtle import Turtle #引用turtle库 p=Turtle() #给p赋值为 p.speed(2) #速度 p.pensize(5) #画笔宽度 p.color("red") #画笔颜色 p.fillcolor("yellow 阅读全文
摘要:
#铅球飞行的轨迹计算程序 from math import pi,sin,cos,radians def main(): #输入仿真参数 angle=eval(input("Enter the lauch angle(in degrees):"))#投掷角度 vel=eval(input("Ente 阅读全文