The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #590
import random
random.randrange(1,100,10)
The output of random.randrange(1,100,10) can be any multiple of 10, plus 1. The only option which satisfies this criteria is 91. (docs.python.org/3/library/random.html)
Question difficulty: 🔵🔵🔵🔵🔵