What is this post about?
This is an audio code dictation to help learners memorize Python syntax. Follow these steps to complete a dictation:
Open a code editor on your computer.
Play the audio and type the narrated code while listening.
Compare your code with the correct code below.
Correct Code
numbers = [2, 3, 4]
product = numbers[0] * numbers[1] * numbers[2]
if product % 2 == 0:
product_status = "even"
else:
product_status = "odd"
print(numbers)
print(product)
Share this post