Oscar Sowerbutts
@OscarSowerbutts
1
When I run my Python code an error appears almost straightaway. The program is meant to be a game in which you guess a word and then get points if you
Python
Coder100 input Is. An argument, not a function anymore because of line 12. Line 12 told python it has value True now, so just rename input argument and don't forget to change line 14 too.1 year ago
ch1ck3n you overrode the function input with a boolean. change
def printPoints(points, tinput = True):
print('\nPoints: %s\n' % points)
if tinput == True:
or smth like that.1 year ago
2
It seems that in part of my code
input('\n\nGuess #%s' % guess)
which is meant to prompt the user for their next guess.
It is meant to output this:
R
Python
1
I can see other people saying that their question has been answered. How do I say that?
They have a little green box on the post that says "answered"
RYANTADIPARTHI You just click on the check mark. So if you click that, then it will say that.2 years ago
Bookie0 Mark answers as correct if it helped you, it gives the person +5 cycles. You can do that only on your own posts, only on the ask board:
Screen Shot 2020-11-25 at 2.45.22 PM
Screen Shot 2020-11-25 at 2.45.37 PM2 years ago
Coder100 well here's an example answer, as you can see there is a check mark to your left. Click that check mark and this answer will be selected an answered.
This only works for posts you own.2 years ago
2
I would like to code a simple python project that ca serve a useful purpose.
Any ideas?
OscarSowerbutts @InvisibleOne @RYANTADIPARTHI
How do I make a secure password saver? I can't store it in a variable (easy to hack) and writing to a hidden file is easy to break into with Spotlight Search (I'm on Mac) or Terminal.
I like the concept.2 years ago
InvisibleOne Something that saves passwords, analyzes financial data and predicts future sales, a calculator for solving quadratic equations (I would definitely use one of those), thing of something that you do every day and see if you can't make a program to do it better.2 years ago
RYANTADIPARTHI Sure, here are some ideas:
hangman
tic tac toe
adventure game
quiz
typing game
tester
language translator
choose your own adventure
2048
UNO
password safe
random number generator
random word generator
guessing game
Ping me if you need more2 years ago
1
I have made a quiz on the US election 2020.
Can you improve the code?
What was your score? (DO NOT USE GOOGLE)
Comment your answers.
Python