Write a function named ilovepython that prints out I love Python three times.then ,call that function
Answers
Answered by
2
def make_shirt(size='L',simple='I Love Python'):
print("The size of this is "+size+" and the simple is "+simple)
make_shirt()
make_shirt(size="M")
make_shirt(simple="Hello World")
Here is another similar one and either of the two answers you can use them, because they are correct, that's fine.
def display_message():
print('I have learn Python')
display_message()
➥ I hope I have helped you, greetings!
Atte: ღAlejandraAranibarღ
Similar questions