I am trying to convert a python program file into an app, following this tutorial.
My program needs to take the user input, however:
print("What DOMAIN do you want to block?")
print("Example: youtube.com")
websitebeingblocked = input()
When I run my program, it prints out:
ValueError: invalid literal for int() with base 10
I tried following the answers to this question, but my program still doesn't work. I think it went wrong when I asked for user input - how can I solve this?
Please please help me; I still have not found a solution. Even a comment would really help!