stubaduble
@stubaduble
If you have ever played the classical board game, Mastermind, you will know how it works, guessing a certain combo, black pegs to mark if you got the
Python
ash15khng Basically how I think this could work is just check if every character in the player input is in the answer using the in keyword like this: "a" in "abc".
answer = "RRRR" # pretend this is the answer
player = input("Guess: ") # pretend this is the player input
for letter in player:
if letter in answer:
can be either black or white
check for black
else:
white_pegs += 1
Hopefully this somewhat helps?3 years ago
i want to make a 3Dish sign, that looks like it does in marvel, i have tried to make a 2D version, however that has taken forever and does not work so
Python
This is a python program that lets you encrypt, decrypt or even bruteforce a secret message.
please up vote, and comment some improvements.
Python
I do know that it was impossible, as of last year, however i had heard mos rumours that you may be able to play sound in the future..
is that now poss
ash15khng You need to be an explorer (choose it in your user settings) and you can use modules such as playsound to play sounds. Example:
from playsound import playsound
playsound("sound_file.wav")
reference: https://realpython.com/playing-and-recording-sound-python/
Hope this helps.3 years ago
I have installed android studios, and i am wondering if it is possible if you can turn the code into a mobile app that you can install on your android
Python
ash15khng You can't turn repls into android apps unless you remake the whole thing as an android app sadly.3 years ago
This was my attempt at making a Caesar Cipher, however their is a problem on line 35 with indention..
can you please help me?
Python
stubaduble Thank-you for all of the help, however i figured it out.
my whole program was not indented properly..3 years ago
I need some help. it said their is an error in line 35 with indention...
i can not figure it out, please comment below o how to fix it
Python
i have download the image to the repl and it still does not want to make it exist..
please help me.
Python
A really fun small game that i have made, it took along time to make because this is my first attempt at a game.
Please up vote and comment what i can
Python
This was a fun little project and my first attempt at a choose your own adventure game. please upvote and give me some more suggestions in the comment
Python
this was simply just a fun little project that i made, it is meant to represent a choose your own adventure.
Python