Section outline

    • WB3.1: Outputting Messages with print()

      Learning Goal: Use Python’s print() function to display text and results to the screen, forming the basis of program output.

    • WB3.2: Getting User Input with input()

      Learning Goal: Learn how to pause a program and get input from the user via the input() function, and store that input for use in the program.

    • WB3.3: Converting Input Types (Strings to Numbers)

      Learning Goal: Learn how to convert the string input from input() into numeric types (int or float) when needed, enabling mathematical operations on user-provided numbers.