Daily Python Projects
Python Code Dictations
Concatenating Strings - Python Code Dictation
3
0:00
-1:56

Concatenating Strings - Python Code Dictation

Level: Easy 🟡
3

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

firstname = "Python"
lastname = "Rocks"
fullname = firstname + " " + lastname
print("Full name:", fullname)
full_name_length = len(fullname)
print("Length of full name:", full_name_length)

Discussion about this episode

User's avatar