ARTICLES > Web Programming

[Python] How to fill number 2 digit to random number Turn Back

2019-07-03 17:04:01

import random
print(f'{random.randrange(1,10):02}')
Turn Back