mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 21:35:58 +00:00
12 lines
213 B
Python
12 lines
213 B
Python
import sys
|
|
from sys import version, version as v
|
|
|
|
print(sys.version)
|
|
|
|
print(sys.version[:3])
|
|
print(version[:3])
|
|
print(v[:3])
|
|
|
|
# the tool is timid and only flags certain numeric slices
|
|
i = 3
|
|
print(sys.version[:i])
|