HomePython Write a Python program to create the combinations of 3 digit combo Vikram somai October 31, 2021 0 Comments Facebook Twitter numbers = [] for num in range(1000): num=str(num).zfill(3) print(num) numbers.append(num) output:-999 Tags Python Facebook Twitter
Post a Comment
If you have any doubts, Please let me know
Thanks!