Number guessing game; library usage: turtle

myNum = 10 
print( ' Number guessing game\n ' )

while True:
    guess = int (input( ' Please enter a number, greater than 1 and less than 20: ' ))
     if guess > myNum:
        print( ' Guess the big one ' )
    elif guess < myNum:
        print( ' Guess is too small ' )
     else :
        print( ' Congratulations, you guessed it right! ' )
         break

import turtle
turtle.circle(50)

turtle.circle(100)

import turtle

turtle.circle(100)
turtle.goto(0,-100)
turtle.circle(200)

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325022867&siteId=291194637