Create a program with two methods, one method for displaying your full name and the
other method displays your address.
I am Carla May Laput and my address is 067, Purok Bougainvilla, Larayan Dapitan City 7101
def Name():
return "Carla May Laput"
def Address():
return "067, Purok Bougainvilla, Larayan Dapitan City 7101"
print(f"I am {Name()} and my address is {Address()}")
Comments
Leave a comment