Menu
Coddy logo textTech

Recap - Simple Math

Part of the Fundamentals section of Coddy's Python journey — lesson 13 of 77.

challenge icon

Challenge

Beginner

You are given a code, initialize the variables a and b with integer values so that c will hold 24.

Refer to the given code to understand what c holds

Try it yourself

# Type your code below
# Replace question marks with correct values
a = ?
b = ?

# Don't change the line below
c = b * a
print(f'c = {c}')

All lessons in Fundamentals