how to convert user integer input to string in python

Solutions on MaxInterview for how to convert user integer input to string in python by the best coders in the world

showing results for - "how to convert user integer input to string in python"
Giada
06 Jan 2021
1int_input = str(input("Write a number:- "))
2print(type(int_input))