+ 4
What version is this teching in?
I know it's python 3, but what version specifically?
3 Respostas
+ 7
I guess 3.5.1 because that is the python version available in code playground
( code to print python version is ,,
import platform
print("Python version is ",platform.python_version())
)
anyway it does not matter because this course does not teach things that changed from v3.4 to 3.5
+ 3
@Sunera you're god damn right. 3.5.1 it is:
from sys import version
print(version)
Output:
3.5.1 (v3.5.1:37a07cee5969, Dec 6 2015, 01:38:48) [MSC v.1900 32 bit (Intel)]
0
Thanks