· Integration of code execution in Discord, fostering an environment where users can collaborate, learn, and troubleshoot Python code together, enhancing the overall Discord experience for coding enthusiasts.
· Only works with Direct Message to the Bot ( Not Channels Yet )
· F-strings aren’t supported, an alternative would be:
· Usage
Check out the home page for the full Discord Bot List.
· Only works with Direct Message to the Bot ( Not Channels Yet )
· F-strings aren’t supported, an alternative would be:
-
F-strings :
print(f"{item} is bigger than or equal to 2")
❌ -
The .format() :
print(f"{} is bigger than or equal to 2").format(item)
✔️ -
String Concatenation :
print(str(item) + " is bigger than or equal to 2")
✔️
· Usage
Send DM with ‘&’ before the code with no spaces.
· New Line : Shift + Enter
· Tabulation Ident : Space