Posts by David Melo • 84 points
1 post
- 
		
7
votes5
answers29639
viewsA: How to convert an int number to string in python?
You can use: str(10); And from string to int you can use: int('10');
 
1 post
7
votes5
answers29639
viewsYou can use: str(10); And from string to int you can use: int('10');