Daily Python Projects
Python Code Dictations
Adding Two Numbers - Python Code Dictation
0:00
-0:49

Adding Two Numbers - Python Code Dictation

Level: Easy 🟡

What is this post about?

This is an audio code dictation to help learners memorize Python syntax. Follow these steps to complete a dictation:

  1. Open a code editor on your computer.

  2. Play the audio and type the narrated code while listening.

  3. Compare your code with the correct code below.

Correct Code

num1 = 10
num2 = 15
total = num1 + num2
print("Total", total)

Discussion about this episode

User's avatar

Ready for more?