Python – How to convert int to String

In Python, we can use str() to convert a int to String.


num1 = 100

print(type(num1))  # <class 'int'>

num2 = str(num1)

print(type(num2))  # <class 'str'>

Output


<class 'int'>
<class 'str'>

References

  1. Python docs – str()
  2. Python – How to convert String to int

mkyong

Founder of Mkyong.com, passionate Java and open-source technologies. If you enjoy my tutorials, consider making a donation to these charities.

0 Comments
Most Voted
Newest Oldest
Inline Feedbacks
View all comments