DEV Community

Discussion on: Ultimate Python Cheat Sheet

Collapse
 
mikowhy profile image
Mikolaj Paczkowski

Convert to string

number = 50 + int("50") # 100

isn't it conversion to int?