Created
June 24, 2020 06:32
-
-
Save mayankdawar/ae6f1d2d9076d1704063368a8c624d42 to your computer and use it in GitHub Desktop.
Write a function called change that takes any string, adds “Nice to meet you!” to the end of the argument given, and returns that new string.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Write a function called change that takes any string, adds “Nice to meet you!” to the end of the argument given, and returns that new string. | |
def change(string): | |
Str = "{}Nice to meet you!".format(string) | |
return Str |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment