Robert Glos
@Bobo48
I am making a very simple game to get my percentages in German class up easily but I just started getting this error: segmentation fault (core dumped)
Python
Nemoiscool Looks like something could be causing something else to crash. Unfortunately, I'm not sure what. It could be the python interpreter, could be random, could be sys... I'm not really sure what to do about it.3 years ago
I need to make it so a generates a random number each time instead of printing out the same random number multiple times.
Python
ash15khng Just do something like:
import random
for i in range(10):
print(random.randint(1,100))
`3 years ago
I am making a gambling script in Python and it seems to always throw out the same answer, thank you for help. The coin flip script seems to work but t