Hacker Nav
@DeadWither
The Universe is big.
Contributor to AOS python library:
https://replit.com/@Ultrox/Admin-Operations-System-V006 .
Python Addict.
13 yrs old!
3
207
2
3
5
1
In python, there is the replit module.
Is there an in - built variable that is equal to the name of the replit user who is currently using the progra
OldWizard209 yep. you can get that by first importing the os module, and getting the user id like:
import os
username = os.getenv("REPL_OWNER")
1 year ago
4
Python Modules
How to make your own custom module
This is in Python!
So let's make a module in Python!
What is a Module?
A module is a something lik
1
I am new to Replit and whenever I go to a profile I see a number. For example:
DeadWither (0)
What does that number mean? And how can you increase i
VulcanWM It means cycles and they are the equivalent of reddit karma and stack overflow reputation
You get more when people upvote your posts or comments, or when you answer people’s questions1 year ago
Wumi4 It's cycles. Basically it is like internet clout or Reddit's Karma. If someone upvote your post, you get a cycle. If you answered someone's quesiton and they marked that answer as correct, you get 5 cycles.1 year ago
Hello,
Is there a syntax for ending the script?
If not, is there a syntax for restart?
themining72 To automatically restart the script, you could encase your entire script in a while True: loop. To end/exit the script, exit() works.1 year ago
1
Hello everyone, I am new to Replit and a beginner to Python.
While I was doing something, this bug occured
if Armour == "yes":
a = 5
This is the er