Tagged Questions
6
votes
4answers
743 views
making python 2.6 exception backward compatible
I have the following python code:
try:
pr.update()
except ConfigurationException as e:
returnString=e.line+' '+e.errormsg
This works under python 2.6, but the "as e" syntax fails ...
1
vote
4answers
375 views
Number in python - 010
When using the interactive shell:
print 010
I get back an 8.
I started playing around using other numbers having zeroes before (0110 = 72, 013 = 11) but I could not figure it out...
What is ...
0
votes
4answers
441 views
Python 3 Syntax Changes
So my work which had used older Python 2 is doing some code updating, anyways I am just learning python and am actually pretty new here, but what are the major syntax changes that went from 2-->3
Or ...
0
votes
3answers
323 views