Pybot Homework Guide

Here is a skeleton of the Pybot program

#Pybot Program

while True:
    command = input("Please enter your command:")

    if command == "Pybot, Tell me a joke":
        print("Hi")
    elif command =="Pybot, What is the weather like today?":
        # Type command to print weather information here
        print("Hi")

    #Type more elif commands here

    elif command =="bye":
        break
    else:
        print("Sorry, I do not know the answer to that question.")