Community
Old Coder, New Tricks | feat/ Kody Low
Wed Apr 05 2023
Beginner Python: Building a Game of Blackjack
Sat Apr 15 2023
Old Coder, New Tricks | feat/ Anirban Chatterjee
Wed Apr 19 2023
Explore the Community Hub
FEATURED
TOP GLOBAL TIPPERS
1
JDOG787
110.2K
2
d31337
97.4K
3
CoderGautamYT
35.2K
4
SHADOWMSTD
29.1K
5
vertal
25.5K
5
ComponentsLearn how to make three simple yet game-changing React Components in this Repl. Check out the tutorial post at https://dev.to/ironcladdev/three-solid-minimalist-components-1275
60
5
5
4
You can make a website today!Make a website in about 5 mins!
38
7
4
2
3. Printing in colorOnly covers 8-bit colors!
41
3
2
CoderElijah Nice. I'm going to bookmark this. I used ANSI codes in [ASCII Movie](https://replit.com/@CoderElijah/ASCII-Movie), which means they are also in my custom Py library, but it's always nice to have an example. I did it for everything on the screen, so your `reSet` will be useful to me.2 months ago
2
Custom Python Formatting optionsSee how to enable custom formatting options in Python repls!
34
2
2
2
DownloadFile.jsxShows you how to download a file from the frontend with React!
1
1
2
BadDealCrook 29 days ago
1
Google Fonts TutorialA tutorial on importing Google Fonts into an HTML environment.
12
5
1
0
My secret to make +600 robux weakly for freeI never spend money on games-games make me the money 😤
+join my group
8
3
0
0
Using If/Else to Determine if an Input Number is Odd or EvenUses basic if/else statement to determine if an input number is odd or even. A brief description of how it works is available within the code as a comment.
3
1
0
DuncanBarner Included headers that aren't necessary for the program to run. I was just doing that for muscle memory, so to speak. You don't need to include cmath or cstdlib for it to work. Just trying to build habits.29 days ago
0
When u fork me, cats will show upWhen u fork me, cats will show up
4
2
0
0
Python Beginner TutorialA beginner Python tutorial.
6
1
0
CataclysmTech Sample Solution for Calculator project:
```py
def add(a,b):
return a+b
def sub(a,b);
return a-b
user_input = int(input("Enter your first number: "))
operator = input("Enter your operator: ")
user_input2 = int(input("Enter your second number: "))
if operator == "+":
print(add(user_input, user_input2))
else if operator == "-":
print(sub(user_input, user_input2))
```
I don't know if the code works, just a sample solution.1 month ago