Im Getting Error:
im getting an error when i input a or b or c in choice1's input
getting error:
TypeError: 'str' object is not callable
class a:
name = "option a"
class b:
name = "option b"
class c:
name = "option c"
choice1 = input("input: ")
choice = choice1()
print(choice.name)