Post

@PythonPr Output should be 125. int(a) will do type conversion.
English

@PythonPr 125. a was a string and b has been converted to an int. Therefore, 123+2=125
English


@PythonPr a can be cast as an int (in b) since the values in a are all numbers. So, 123 + 2 is 125
English





































