Hi everyone i am a total newbee at python and have one question that i hope you can help me with:
When i type the following code in 2.7:
import math everything = dir(math) print everything ( it showes every function in the math libary)
in gives me the correct answer
when i type the same code in python 3.4 the following error turns up:
import math
everything = dir(math) print everything File "<stdin>", line 1 print everything ^ SyntaxError: invalid syntax
Does anyone know why python 3.4 turns up the error?