I’m new to Python, and forking, and repl.it. I’m trying to just get started with the first project, which is called the “arithmetic formatter”… But I can’t even seem to get “Hello World” to work? Actually, if I start fresh and don’t make any changes at all, when I click run I get traceback error. How do I start using this IDE?
Here is the link: https://repl.it/@pj789/boilerplate-arithmetic-formatter-8#main.py
Here is my error: python main.py
Traceback (most recent call last):
File “main.py”, line 6, in
print(arithmetic_arranger([“32 + 698”, “3801 - 2”, “45 + 43”, “123 + 49”]))
File “/home/runner/boilerplate-arithmetic-formatter-8/arithmetic_arranger.py”, line 4, in arithmetic_arranger
return arranged_problems
NameError: name ‘arranged_problems’ is not defined
Please help a newbie out?
-James