Created
September 10, 2022 16:45
-
-
Save evuazeze/cc88dbf95f10549411d19954e919afa2 to your computer and use it in GitHub Desktop.
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
""" | |
:type firstname: {String} | |
:type lastname: {String} | |
:type age: {Integer}] | |
""" | |
def my_string_formatting(firstname, lastname, age): | |
print(f"Hello, my name is {firstname} {lastname}, I'm {age}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment