squareroot.py 424 B

1234567891011121314151617
  1. from random import shuffle
  2. score = 0
  3. print('0 für Ende.')
  4. sqrt_list = [x for x in range(11, 101) if x % 10 != 0]
  5. shuffle(sqrt_list)
  6. for sq in sqrt_list:
  7. print('Quadratwurzel von ' + str(sq**2) + '?')
  8. x = int(input())
  9. if x == 0:
  10. break
  11. elif x == sq:
  12. score += 1
  13. print('Richtig. Neuer Punktestand: ' + str(score))
  14. else:
  15. print('Falsch. Besser: ' + str(sq))