Created
November 15, 2020 03:04
-
-
Save kjaymiller/e05fc489ace44e0f4426638f05841cc6 to your computer and use it in GitHub Desktop.
Convert input to to UPPERCASE with CLAPPING EMOJIS
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
"""Directions. | |
1. pip install typer | |
""" | |
import typer | |
app = typer.Typer() | |
@app.command() | |
def main(sentence:str): | |
typer.echo(sentence.replace(' ', '👏').upper()) | |
if __name__ == '__main__': | |
app() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment