Skip to content
Sign UpLog In
Profile icon

Isha Nair

@IshaNair
Repls
Community
IshaNair
IshaNair
shared a Post
3 years ago
How do I understand Repl.it
What simple project should I do in Python to figure out how repl works and get a better understanding of it?
AphixDev
AphixDev
Personally, if I were you, I would begin by making a simple text based input game. All it takes are if/else statements and inputs. If you're feeling ambitious like me, learn some Flask! Good Luck!3 years ago
Anoki21
Anoki21
I see you're into Python. That's a good start for using repl.it, it's a very readable language! You could try running files from different folders, importing modules, making a calculator, etc. https://docs.repl.it/ is a good place to go for any questions about the site itself.3 years ago
IshaNair
IshaNair
shared a Post
3 years ago
When I try to download an image from my Files onto my server, the image does not get imported to my server. I think my line of code to bring in images
AphixDev
AphixDev
On replit, files are treated differently than they are on desktop. all you need is: chickenimage = pygame.image.load('HayHaythechicken.png') `3 years ago