We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
# Output: # 5 # 10 # 15 # 20 # 25 # 30 # 35 # 40 .... # 100 def multiples_of_five(start, stop): for num in range(5, 101, 5): print(num)