What is the most basic way to print something in Python?
What is the purpose of using the input function in Python?
What challenges have you encountered when using the input and print functions in Python?
What strategies have you used to help you remember how to use the input and print functions in Python?
Brain break: Draw a potato with superhero feathers, flying across the sky.
What function do you use to get input from the user in Python?
- user_input()
- input()
- get_input()
Which of the following is a correct way to use print function in python?
- print('Hello World!')
- 'Hello World!'
- 'Hello World!' print
What does the input() function return by default?
What is the output of this code: print(3+5*2)?
How do you cast a string into an integer in Python?
- (string)input()
- int(input())
- (integer)input()
Work together in pairs: What are three different ways you can use the print() function to print out strings in Python?