Howdy Zed, there's a small typo in your printf statement. As written, x = 'Zed' print f"Howdy {x}" Should read, x = 'Zed' printf "Howdy {x}" I was under the suspicion that, "f" was some sort of operator or something, much like q is for Perl, print q{Howdy Zend};
print(f"Howdy {x}")
It's a new python 3.6 feature called f-strings/string interpolation
https://docs.python.org/3.6/reference/lexical_analysis.html#...
That said in python3 print is a function not a statement and requires parenthesis so he still has a typo.