I am created a program and when I call a function within a function it gives me TypeError: 'str' object is not callable
def show_around():
print("This is the white house!")
def flappy():
print("Hi! My name is Flappy I can show you around peguin world if you like.")
show_around = input("Show around? enter for yes no is 1: ")
if show_around == "":
print("OK I will show you around the country.")
show_around()
elif show_around == "1":
print("Fine I won't Bye.")
else:
print("I took that as a no.")
flappy()
srry gouys I solved it