I want to take from the user an input integer, and turning to a string in my code. My line of code for that is:
num1 = input(int(str("Enter a number: ")))
But the console says: ValueError: invalid literal for int() with base 10: 'Enter a number: ' If this line isn't correct can you show me a way how can I turn an integer that is given by the user to a string in my code?