def greet_with(name, location):
print(f"hello {name}") print(f"How is the weather in {location}")greet_with("Harry", "Inala")
0 Comments