Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created June 3, 2021 05:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/3b5d001f6b2cb53d5d14ba38801cf474 to your computer and use it in GitHub Desktop.
Save amankharwal/3b5d001f6b2cb53d5d14ba38801cf474 to your computer and use it in GitHub Desktop.
user_input = str(input("Enter a Phrase: "))
text = user_input.split()
a = " "
for i in text:
a = a+str(i[0]).upper()
print(a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment