# Lesson 5
# Notes!
# Make word uppercase upper()
# Make word lowercase lower()
# List and If statement
# Script asks user to enter a game and prints the game's boss
game = input("Enter game name")
games = ['DOOM','TERRARIA']
bosses = ['icon of sin','moon lord']
game = game.upper()
if game == games[0]:
boss = bosses[0]
print(f'the final boss in {game} is the {bosses}')
elif game == games[1]:
boss = bosses[1]
print(f'the final boss in {game} is the {boss} and no one')
else:
print (f'i dont know {game}')
# Drawing with turtle
# The below draws a square
# Right rotates 0-360 degrees
# Forward moves ahead x number of pixels
import turtle
t = turtle.Pen()
# Draw a square
t.forward(200)
t.right(90)
t.forward(100)
t.right(90)
t.forward(200)
t.right(90)
t.forward(100)