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

No comments yet. Be the first to leave a comment!

Leave a Comment

Your email address will not be published. Required fields are marked *