2. Variables, Expressions, and Statements Flashcards
assignment
A statement that assigns a value to a variable.
concatenate
To join two operands end to end.
comment
Information in a program that is meant for other programmers (or anyone reading the source code) and has no effect on the execution of the program.
evaluate
To simplify an expression by performing the operations in order to yield a single value
expression
A combination of variables, operators, and values that represents a single result value.
floating point
A type that represents numbers with fractional parts.
integer
A type that represents whole numbers.
keyword
A reserved word that is used by the compiler to parse a program; you cannot use keywords like if, def, and while as variable names.
mnemonic
A memory aid. We often give variables mnemonic names to help us remember what is stored in the variable.
modulus operator
An operator, denoted with a percent sign (%), that works on integers and yields the remainder when one number is divided by another.
operand
One of the values on which an operator operates.
operator
A special symbol that represents a simple computation like addition, multiplication, or string concatenation.
rule of precedence
The set of rules governing the order in which expressions involving multiple operators and operands are evaluated.
statement
A section of code that represents a command or action. So far, the statements we have seen are assignments and print expression statement.
string
A type that represents sequences of characters.
type
A category of values. The types we have seen so far are integers (type int), floating-point numbers (type float), and strings (type str).
value
One of the basic units of data, like a number or string, that a program manipulates.
variable
A name that refers to a value.
Write a program that uses input to prompt a user for their name and then welcomes them.
Enter your name: Chuck
Hello Chuck
- question = ‘Enter your Name : ‘
- name = input(question)
- print(‘Hello’,name)
Write a program to prompt the user for jours and rate per hour to compute gross pay.
Enter Hours: 35
Enter Rate: 2.75
Pay: 96.25
We won’t worry about making sure our pay has exactly two digits after the decimal place for now. If you want, you can play with the built-in Python round function to properly round the resulting pay to two decimal places.
hours = int(input(‘Enter Hours: ‘))
rate = float(input(‘Enter Rate: ‘))
gross_pay = hours * rate
print(‘Pay:’,gross_pay)
Assume that we execute the following assignment statements:
width = 17 height = 12.0
For each of the following expressions, write the value of the expression and the type (of the value of the expression).
- width//2
- width/2.0
- height/3
- 1 + 2 * 5
Use the Python interpreter to check your answers.
- width = 17
- height = 12.0
- print(width//2)
- print(width/2.0)
- print(height/3)
- print(1 + 2 * 5)
Write a program which prompts the user for a Celsius temperature, convert the temperature to Fahrenheit, and print out the converted temperature.
- Celsius = float(input(‘Enter Celsius temperature: ‘))
- Fahrenheit = ((Celsius * 9) / 5) + 32
- print(‘Fahrenheit:’,Fahrenheit)