mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-23 00:05:09 +00:00
10 lines
163 B
Python
10 lines
163 B
Python
import sys
|
|
|
|
|
|
def check_python_version():
|
|
version = sys.version
|
|
print(f"Python version: {version}")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
check_python_version()
|