Please enable JavaScript to use CodeHS

Want to receive Question of the Day updates? Subscribe Here

Python Question of the Day Jan. 13, 2025

  1. Incorrect Correct No Answer was selected Invalid Answer

    What would be the output of the following program?

    sneaker = "Jordans"
    
    def outfit():
        pants = "joggers"
        sneaker = "Chucks"
        print("Shoes: " + sneaker)
        print("Pants: " + pants)
    
    outfit()
    print(sneaker)
    Python