n1 = 10 n2 = 23
print ("Total of n1+n2 is: ",n1+n2," the type is", type(n1+n2))
When I run it I have:
Total of n1+n2 is: 33 the type is <class 'int'>
>>>
I'd like to read "the type is int" and NOT "the type is <class 'int'>,
how could I solve it?
^Bart -- https://mail.python.org/mailman/listinfo/python-list
