mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 04:44:19 +01:00
9 lines
191 B
Python
9 lines
191 B
Python
import random
|
|
import string
|
|
|
|
|
|
def generate_season_code(length: int = 5) -> str:
|
|
return "".join(
|
|
random.choice(string.ascii_uppercase + string.digits) for _ in range(length)
|
|
)
|