Jak przekonwertować wejście liczb całkowitych użytkownika na ciąg w Python
int_input = str(input("Write a number:- "))
print(type(int_input))
Programmer of empires
int_input = str(input("Write a number:- "))
print(type(int_input))