0
Want to know that why I am getting errors in 2nd part of type conversion
3 odpowiedzi
+ 2
Which lesson in python ,type?
+ 1
You should go through the lesson again , basically "3"+"4" concatenates string so it is "34" now , which is converted to int by int("3"+"4")
so answer is 34
0
Thanks