Vocabulary List

  1. print: used to output a message on the screen. For example, print(“Hello!”) output: Hello! You only use quotations for string, which are words.
  2. def: used to identify a function
  3. input: used to take an input from the user. Input taken from the user will be converted into a string ex: input(“Enter value: “) Enter value: 1 ‘1’
  4. variable: used to input or is considered a space for a word. For example, msg = "hi" and then I did print(msg) it will output "hi"