some problems for an introductory python test

Terry Reedy tjreedy at udel.edu
Tue Aug 10 15:41:35 EDT 2021


On 8/10/2021 9:15 AM, Hope Rouselle wrote:
>>>> 2.__add__(3)
> SyntaxError: invalid syntax
> 
> But then I tried:
> 
>>>> (2).__add__(3)
> 5

Add a space is easier.
 >>> 2 .__add__(3)
5
 >>>

-- 
Terry Jan Reedy



More information about the Python-list mailing list