Gr8est
@Gr8est
Just another python coder
HEMLANU wow good I have made a game of battleships - https://repl.it/talk/share/War-Battleship/112130 pls see this no one seeing that I took many time to make pls see it2 years ago
It's been a while since I made a post, so I decided to share my second version of guess the number. It's the second version because normal guess the n
Python
Hello guys and gals!
How are y'all doing! Welcome to the AUVS(Look at title for more info)! Inspired by Smart0ne's Among Us, I decided to make an Amon
Python
Hello guys and gals!
How are y'all doing! Welcome to the AUVS(Look at title for more info)! Inspired by Smart0ne's Among Us, I decided to make an Amon
Python
Hello guys and gals!
How are y'all doing! Welcome to the AUVS(Look at title for more info)! Inspired by Smart0ne's Among Us, I decided to make an Amon
Python
Hello Everyone!
How are you guys doing! Hope everyone is being safe during the Covid pandemic! This is a voting system that is inspired by @Smart0ne's
Python
NehalRam it doesn't even work
Welcome to AUVS with 4 players
Who do you want to put a vote for?
1 - Red
2 - Cyan
3 - Yellow
4 - Black
Vote for: red
The results:
Red: 4
Cyan: 4
Yellow: 3
Black: 4
No one has been ejected(Tie)
Do you want to play AUVS again?:
2 years ago
Hello guys!
Welcome to my Among Us Voting System(AUVS for short)!
Inspired by @Smart0ne's Among Us Game, this is a voting system that you can use to v
Python
What do I do when I want to see which number out of all of some variables is the highest number? Thanks!
@Gr8est
RYANTADIPARTHI There is a better way. you can use the max() function for that.
listOfVars = [var1, var2, var3]
print(max(listOfVars))
simple! You can get the biggest number there.2 years ago
Kai_Justice You should put them in a list then sort the list:
var1 = 3
var2 = 30
var3 = 14
listOfVars = [var1, var2, var3]
listOfVars.sort(reverse=True) # set reverse to False if you want lowest to highest.
print(listOfVars)
print("Highest Number: ", listOfVars[0])
Output:
[30, 14, 2]
Highest Number: 302 years ago
Hello guys!
A RPS game
But what is special is that it has Apple emojis! Enough small talk! Just remember to click on the screen and then type either r
Python
Hello folks!
How are y'all doing! I'm doing great!
This is a rock paper scissors game with...wait for it...graphics! It includes the Apple emojis! En
Python
I have a question in which I want to know how to only get the output of something in a HTML file, but the backend is in Python. Thanks in advance.
Coder100 Do you mean making an HTTP server? https://www.tutorialspoint.com/flask/index.htm2 years ago
RYANTADIPARTHI Well, for one thing, you can just comment out the code in python, and just run the HTML script. But you can also run static code in python. And it will work2 years ago
I am trying to make a timer. But when I run it, there is a .0 at the end of each number that I don't want. Does anyone know how to make the .0 disappe
Python
badst Cause it's a float(7 digit decimal). make it an int(integer) instead.
counter = int(input("Input the number that you want to start the countdown from: "))
`2 years ago
I am thinking of making a collection of quizzes. But I don't know whether I should make an easy and a hard quiz, or a normal and a hard quiz. Write yo
RYANTADIPARTHI Tr making easy first, since it;s Easy. But sure, making all of them would be good too2 years ago
Bookie0 Make all 3!
You can make a repl where you first have a menu and you can choose what difficulty you want! Like
[1] Easy
[2] Normal
[3] Hard
And the user has to choose. Then at the end, they can go back and take another quiz in a different difficulty!
BTw if you need some ideas for quiz:
harry potter
star wars
lord of the rings
coding languages quiz (python, C++, C#, JS, C, LOLCODE, ruby, HTML CSS, etc.)
movie quiz
idiot quiz
mature quiz
apple products quiz
repl.it quiz
percy jackson quiz
video2 years ago
This Repl is about things that might help you sometime, like a random number generator, a coin flipper, etc. Enjoy!
Python
Hello. This is a drawing using Turtle from Python. If you look at it closely after it finishes drawing, you can see that it kind of looks like a 3D tu
Python (with Turtle)
Hi guys I made a tunnel drawing using Turtle from Python. If you look at it closely, it'll look like a 3D tunnel with a red box-type thing in the midd
Python (with Turtle)
its a drawing using turtle. i'm too lazy to put capital letter in my sentences. give this an upvote if you enjoyed and tell me what I should do next u
Python (with Turtle)
I made a random shape using Turtle from Python. There are still changes being made so please be patient. Give this an upvote and suggest things that I
I have ran out of ideas to make something. If you have any suggestions to make a project in Python, then comment on this post. Thanks.
RYANTADIPARTHI Here are stuff you can do in python:
hangman
adventure game
tic tac toe
typing game
animations
shooter
weapon
choice
date checker
Ping me if you need more.2 years ago
IndyRishi Or maybe you an make something using Spotipy. Spotipy is Spotify for devs. Try making a song seaarcher. You search a song and it plays it.2 years ago