The Case Against Python 3
21–30 of 281 posts
Re: The Case Against Python 3
#22P.S: I'm really sorry Java guys, I know Java isn't going to die, atleast not for another 100 years, but since I don't like it much, I'm putting it in the list here.
Re: The Case Against Python 3
#23Python was one of the first languages I've tried I actually enjoyed programming in. I hope to continue leveraging my investment in learning python by using it for a long time. So far I haven't been forced to use Python 3. I've tried a few times but always found it easier to just go back to python (2.7). I figure eventually I have to use Python 3 but at this point, my life has been fine without upgrading to python3.
Re: The Case Against Python 3
#24 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};Re: The Case Against Python 3
#25What does this even mean?
Re: The Case Against Python 3
#26> The fact that you can't run Python 2 and Python 3 at the same time I'm confused by this statement. I can start a python2 interpreter, background it, then start a python3 interpreter. Is there some other area that they inhibit each other in?
Re: The Case Against Python 3
#27> The fact that you can't run Python 2 and Python 3 at the same time I'm confused by this statement. I can start a python2 interpreter, background it, then start a python3 interpreter. Is there some other area that they inhibit each other in?
Re: The Case Against Python 3
#28Re: The Case Against Python 3
#29Zed just needs to be at war with something.
Re: The Case Against Python 3
#30Howdy 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};
The print statement however is not valid Python 3 :).