Please enable JavaScript to use CodeHS

Coding in Math

Lesson 2.4 Getting User Input

Description

In this lesson, students learn how to get input from the user using the input() function. By default, the input from the user is read as a string. Students will convert input values into a numerical data type (e.g. int) to perform arithmetic operations and then convert calculations into a string in order to print the results.


Objective

Students will be able to?

  • get input from the user using the input() function
  • convert input values into the appropriate data type using the int() or float() functions.