Skip to content
Sign UpLog In
Profile icon

Gr8est

@Gr8est
Just another python coder
  • Guess the Number

    Cover page
    Made with Python
    Recent comments (0)
  • Rock Paper Scissors (v2.0)

    Cover page
    Made with Python
    Recent comments (0)
  • Among Us Voting System

    Cover page
    Made with Python
    Recent comments (0)
Repls
Community
Gr8est
Gr8est
shared a Post
2 years ago
Guess the Number(Special)
A Guess the number game with 5 levels. Pretty simple.
Guess the Number
Python
HEMLANU
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
Gr8est
Gr8est
shared a Post
2 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
Guess the Number
Python
Gr8est
Gr8est
shared a Post
2 years ago
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
Among Us Voting System
Python
JasonLiu19
JasonLiu19
stop reposting like 3 times2 years ago
Gr8est
Gr8est
shared a Post
2 years ago
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
Among Us Voting System
Python
Gr8est
Gr8est
shared a Post
2 years ago
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
Among Us Voting System
Python
Gr8est
Gr8est
shared a Post
2 years ago
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
Among Us Voting System
Python
NehalRam
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
Gr8est
Gr8est
shared a Post
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
Among Us Voting System
Python
Gr8est
Gr8est
shared a Post
2 years ago
What do I do when I want to see which number out of all of some variables is the highest number? Thanks! @Gr8est
RYANTADIPARTHI
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
FlaminHotValdez
FlaminHotValdez
What language?2 years ago
Kai_Justice
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
Gr8est
Gr8est
shared a Post
2 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
Rock Paper Scissors (v2.0)
Python
Gr8est
Gr8est
shared a Post
2 years ago
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
Rock Paper Scissors (v2.0)
Python
Gr8est
Gr8est
shared a Post
2 years ago
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
Coder100
Do you mean making an HTTP server? https://www.tutorialspoint.com/flask/index.htm2 years ago
Coder100
Coder100
like read a file? Or do you mean scrape it? You can uses beautifulsoup2 years ago
RYANTADIPARTHI
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
Gr8est
Gr8est
shared a Post
2 years ago
There are things here like a timer, rock paper scissors, coin flipper. Pick one of them and satisfy your needs. Enjoy!
Collection of Programs
Python
bwoop
bwoop
lol i asked the magic 8 ball if i had a big #### and it said "yes". This thing is genius2 years ago
Gr8est
Gr8est
shared a Post
2 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
Timer
Python
badst
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
Gr8est
Gr8est
shared a Post
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
Gr8est
Gr8est
Thank you guys for replying! I'll try it out! Thanks!2 years ago
RYANTADIPARTHI
RYANTADIPARTHI
Tr making easy first, since it;s Easy. But sure, making all of them would be good too2 years ago
Bookie0
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
Gr8est
Gr8est
shared a Post
2 years ago
This Repl is about things that might help you sometime, like a random number generator, a coin flipper, etc. Enjoy!
Collection of Programs
Python
Gr8est
Gr8est
shared a Post
2 years ago
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
A_3D_Looking_Tunnel
Python (with Turtle)
Gr8est
Gr8est
shared a Post
2 years ago
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
A_3D_Looking_Tunnel
Python (with Turtle)
Gr8est
Gr8est
shared a Post
2 years ago
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
Don't Know what I was Doing Here
Python (with Turtle)
Gr8est
Gr8est
shared a Post
2 years ago
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
Gr8est
Gr8est
shared a Post
2 years ago
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
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
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
IndyRishi
IndyRishi
Make a dice game where the computer rolls a die and you guess the number!2 years ago