Henslo
@Henslo
I am working on a python terminal or console game:
https://repl.it/@hello1964/An-adventuresurvival-game#main.py
I pretty much completed all the code
Kai_Justice I might be missing something but lines 57-63 are unnecessary because those variables are already declared inside that object.
Edit: Also why are variables stated in the class before it's constructor?2 years ago
I noticed that when I use the input() function it stops the program until enter is pressed. I do not like this because I still want code to run while
MocaCDeveloper I would suggest just sticking to it.
The way I look at it, if you want input wait for that input. There is no real way to continue code execution with a input without it becoming a total disaster!
I mean, you could create new Threads, but that causes clustered outcome and to me personally I don't see why I would need the execution to continue when that input I need is required for output/information used later on in the project!2 years ago
Coder100 from threading import Thread
def func1():
input('your name ')
def fun2():
print('too late or something idk')
print('add some more code idk')
t1 = Thread(target=func1) # also there's an args=() which is kinda self-explanatory ig
t2 = Thread(target=func2)
t1.start()
t2.start()
get ready for weird output!
read me2 years ago
It's tic-tac-toe made with pygame. The computer puts the O in a random spot so it's not that great. If you find any bugs please comment them. If you w
Pygame
InvisibleOne Screen Shot 2020-09-24 at 8.54.31 AM
It didn't open, just came up with this error3 years ago
I really wanted to make a game using python. I looked up how to do it and the process was very difficult. I also noticed that most games made with pyt
Pygame
FrederickSiebe1 Thank you for informing us about how to get around Spam prevention. I'd also like to offer some positive news. Consider the last time you were intrigued by a new casino that offered no deposit free spins and went through the online verification process. To verify your identification, you most likely had to enter personal information such as your name and age, as well as your address, email address, and phone number. Go to https://nlcasinorius.com/pay-n-play-casino/ to know the Best Pay n Play Ca10 months ago
This is the project I made to solve the puzzle for the week of september 20th, 2020 (link here http://plant-puzzle.21natzil.repl.co/ ). This is the fi
This is my first project using python (and Repl.it). I wanted to see how good python was so I decided to make a project on here that I made with scrat
Python