mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-03 08:19:22 +01:00
16 lines
292 B
Python
16 lines
292 B
Python
|
#!/usr/bin/env python
|
||
|
import sys
|
||
|
import secrets
|
||
|
|
||
|
try:
|
||
|
wantedCount = int(sys.argv[1])
|
||
|
except IndexError as noarg:
|
||
|
print("Enter a digit as an argument!")
|
||
|
|
||
|
try:
|
||
|
for i in range(int(wantedCount)):
|
||
|
print(secrets.randbelow(10),end="")
|
||
|
except NameError as noWantedCount:
|
||
|
print()
|
||
|
print()
|