Essential Question: How can I recreate the game Hangman using variables, conditional statements, and loops?
Mastery Objectives:
SWBAT create a conditional statement using if... then.
SWBAT create a while loop.
SWBAT create a variable.
Do Now: Write a Python program to get find out the date and time.
import datetime
now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))
Do Now 2: We:wa https://www.google.com/doodles/celebrating-the-late-wewa
Resources: Play the game Hangman online: https://thewordsearch.com/hangman/
Directions: Write a Python program using conditional statements, while loops, and variables to create the game "Hangman".