I'm trying to give the user of my "Terminal" a list from which they can choose what to do. But when I run my program, it includes the brackets as well. It still runs as normal, but it just looks a bit funny:
user_want_to_do = ["Open Google", "Access Files", "Exit Terminal"]
print("\n")
print(user_want_to_do)
opt = input("Please input what you want to do from the list above:")
Any Suggestions?