Build a Report Card Printer - Step 1

Tell us what’s happening:

I am getting ‘Error: Timed out waiting for the test worker to initialize’

Your code so far


# User Editable Region

name = Alice
print(name)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 Edg/146.0.0.0

Challenge Information:

Build a Report Card Printer - Step 1

Welcome to the forum @sevenu777 ,

It sounds like you met a server glitch, so you may need to wait a bit to try again.

Meanwhile, you may want to correct the error in your code. I’m seeing this message in the console:

Traceback (most recent call last):
  File "main.py", line 3, in <module>
NameError: name 'Alice' is not defined

It’s related to this instruction:

Create a variable called name and assign it the string Alice

Happy coding!