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
firstname = "Python"
lastname = "Rocks"
fullname = firstname + " " + lastname
print("Full name:", fullname)
full_name_length = len(fullname)
print("Length of full name:", full_name_length)
Share this post