Closed generalmimon closed 4 years ago
The Python example at https://kaitai.io/#quick-start doesn't work in Python 3, because it uses the print statement, which has been replaced with a print() function in Python 3: https://docs.python.org/3/whatsnew/3.0.html#print-is-a-function
print
print()
Thanks for the catch, makes perfect sense!
The Python example at https://kaitai.io/#quick-start doesn't work in Python 3, because it uses the
print
statement, which has been replaced with aprint()
function in Python 3: https://docs.python.org/3/whatsnew/3.0.html#print-is-a-function