pyraminx
@pyraminx
Learning python and other things.
0
0
Prime number
With this project you can always know if a number is prime or not, if it’s not, it shows the factors of the number.
This program is good (by that I mean quick) when working with little numbers, but when the number gets larger (about eight digits or more) the program gets (very) slow.
Any tips?Hello,
I’m a little bit in trouble with that basic project. It’s a simple quiz (about the Rubik’s Cube (-:). I wanted to add a score (if the answer is
Python
HermioneGrange2 You need to add points like this:
score = 0
question = input('ksljafoiwahgsdaf?')
question = int(question)
if question = True:
score += 1
elif question = False:
score -= 1
print(score)
`2 years ago
RYANTADIPARTHI Solution
all you have to do is to make a variable, and increment it, whenever something happened.
score = 0
if something:
score += 1
like that.
That should work2 years ago
robowolf It should be points -=1/+=1 not points =-1/=+1. This assigns the variable to either -1 or 1 rather than adding it.2 years ago