高等继续教育 / Python编程
题型描述: 编程题
某程序可绘制标准N字型,但缺失了一句调用常用数学公式的语句,请根据上下文将缺失的语句补全。
import turtle as t
import math
t.shape("turtle")
t.color("red", "yellow")
t.speed(1);t.left(90)
t.forward(100)
t.right(135)
____________________________
t.left(135)
t.forward(100)
t.done()
参考答案:
佳题速递: