Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 456 Bytes

File metadata and controls

22 lines (15 loc) · 456 Bytes

Do Now 1.04

1. In your Console

Type and run the following code

a = input("What is your name? ")
# a = "cats and dogs"
# meow
print("Hello there, " + a)

In your Notebook

Answer the following questions

  1. Read through the code and write down what you expect the printed results to be?
  2. Run the code and write down the actual printed result?
  3. Briefly describe what the # does?
  4. Briefly describe what input does?