我刚开始学习 python,想知道它们是否是一种缩短一行代码的方法。例如,我可以使用类似的东西。
command = input()
if command = "create turtle"
t =turtle.Pen()
或者
turtleCommand = input()
if turtleCommand = "circle"
t.forward(100)
t.left(91)
如果一个字符串“输入”(如果那是一个词)激活了一个defineFunction,那么海龟的事情只是假设的