以下代码可以召唤出几只小海龟?( )
import turtle a = turtle.Turtle() b = turtle.Turtle() c = turtle.Turtle() a.forward(100) b.goto(100, 100) c.goto(100, 100)
1
2
3
4