Which would it make more sense to code an IRC bot in: Python 2 or 3? With 3 I heard you have to do extra stuff because it’s unicode(?).
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It shouldn’t matter.
Python 3 is more Unicode compatible, but that’s only a good thing.
The most obvious and visible thing changed in Python 3 is
print. In Python 3.0 it is a function and requires parentheses.