Returns the python version of the running interpreter. Returns: str: the python version
()
| 152 | |
| 153 | @staticmethod |
| 154 | def python_version() -> str: |
| 155 | """Returns the python version of the running interpreter. |
| 156 | |
| 157 | Returns: |
| 158 | str: the python version |
| 159 | """ |
| 160 | return platform.python_version() |
| 161 | |
| 162 | @staticmethod |
| 163 | def in_container() -> bool: |
no outgoing calls