Skip to content

Instantly share code, notes, and snippets.

@mayankdawar
Created June 24, 2020 06:32
Show Gist options
  • Save mayankdawar/ae6f1d2d9076d1704063368a8c624d42 to your computer and use it in GitHub Desktop.
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.
# 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