Newer
Older
thu-learn-downloader-optimized / scripts / python_version.py
@github-actions[bot] github-actions[bot] on 11 Dec 2023 129 bytes ci: sync with template repository
import platform

major: str
minor: str
patch: str
major, minor, patch = platform.python_version_tuple()
print(f"{major}{minor}")