Repl.it process died unexpectedly
Python code won't run. It says that the repl.it process died unexpectedly. Is this replits fault or mine? https://repl.it/@MichaelFaulkner/Encryption
ThunderGaming5
pls solve my problem i am on node.js it is coming process dies
the link is https://replit.com/@ThunderGaming5/packagejson#main.js
Ge1G
@wellschoolcode fixed it just change the name of the first one back to main.py Because you have to have one on repl : https://replit.com/@Ge1G/pok3nss999#main.py
wellSchoolCode
i have a problem relating to this can you please help?, https://replit.com/@wellSchoolCode/FantasticRespectfulNotification#schoolTry1.py
AaravBhatia
i have the same problem, well it's okay
heyitsmarcus
Can you post the link to your repl please?
You had just a couple things going wrong with your program:
while
loop has to exit at some point. It was dependent oncount
not being equal to the length ofnote
. But,count
was never modified so the while loop is infinite and breaks Python. A simple fix was addingcount += 1
to the next line.append
command on a string. You only need toappend
your arrays here. With strings, you would dolast_note += i
.I made a fork of your program that you can see here: https://repl.it/@heyitsmarcus/Encryption
@heyitsmarcus Please upvote and accept my answer if you think this helped you!