How do variables, inputs, and data types allow Python programs to store information and interact with users?
input() allows programs to communicate with users.Variable — A name that stores a value.
Assignment Operator — = (stores data in a variable).
Input — Collects information from the user.
String — Text in quotes.
Integer — Whole number.
Float — Decimal number.
Type Conversion — Turning one data type into another (int(), str()).