On 03/04/2013 07:28 PM, Pravya Reddy wrote:
Hi
I am having a builtin intendation error for print Addem(3,2).Does it vary
for different versions of python?
How to clear the error?
def Addem(this, that):
return this + that
print Addem(3, 2)
The print statement doesn't line up with t
Hi
I am having a builtin intendation error for print Addem(3,2).Does it vary
for different versions of python?
How to clear the error?
def Addem(this, that):
return this + that
print Addem(3, 2)
print Addem("book", "worm")
print Addem(3.2, 1)
try:
print Addem("caution",1)
exce