Problem 3
What is an algorithm?
Problem 7
Write a statement that displays your name.
Problem 8
Write a statement that displays the following text: Python's the best!
Problem 9
Write a statement that displays the following text: The cat said "meow."
Problem 10
What is a variable?
Problem 15
Look at the following assignment statements: value1 = 99 value2 = 45.9 value3 = 7.0 value4 = 7 value5 = 'abc' After these statements execute, what is the Python data type of the values referenced by each variable?
Problem 17
You need the user of a program to enter a customer’s last name. Write a statement that prompts the user to enter this data and assigns the input to a variable.
Problem 22
How do you suppress the print function’s ending newline?
Problem 23
How can you change the character that is automatically displayed between multiple items that are passed to the print function?
Problem 25
What does the + operator do when it is used with two strings?