# Examples stage.set_background("spring") mysprite = codesters.Sprite("puppy",0,-100) # Variables are orange - mysprite, stage # Strings are green - "underwater" "scubadiver2" # Constants are blue - 0, -100 # = sign means assignment mysprite.say("Hello!") stage.wait(2) name = mysprite.ask("What is your name?") # lower() is a built-in string operation in Python # capitalize is another one. It converts a string # to the first letter being capitlize, rest of the # letters lowercase. # Try it out with various input. name = name.capitalize() # Another string operation is + which takes two # strings and combines. mysprite.say("That's a nice name, " + name)