A post about how this community’s banner used the python 2 print syntax - print "Hello World"
- made me question, can we print a hello world message in Python 3 without using parentheses?
It turned out to be sort of a fun challenge, I’ve found 3 different approaches that work. I’d be interested to see what you come up with! (it seems I can’t put spoilers in Lemmy, so I won’t share my solutions yet in case y’all want to have a go).
Edit: Posted my solutions in the comments
Very interesting solutions. I was in the direction of using dunder methods but could not figure out how. Haven’t heard of the
__class_getitem__
. The second solution is especially inspiring.