6 Answers
0
It is mentioned in the first lesson of the course. Read it carefully.
If you want to know the exact version, go to Code section, click +, select Python.
Then run this code:
import sys
print(sys.version)
0
Thanks but i dont know why the visual studio dont runs the code it has python 3.9 and .NET 4.8
0
Which code? Show it to us so we know what you are referring to
0
def even(x)
if x%2==0:
print("yes)
else
print("No")
0
The indentation is wrong. Please review functions and if-ekse statements.
The functions code needs to be indented by 1 level, the content of if and else by one more level. if and else need to be on the same level of indentation.
You forgot the : after else and the closing " after yes.
0
thank you else was the wrong and :