-
-
Save fatosmorina/354b951b334af3d6a8cbdabb0469b72b to your computer and use it in GitHub Desktop.
This file contains 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
def get_person(): | |
name = "Fatos" | |
surname = "Morina" | |
title = "Software Engineer" | |
return name, surname, title | |
name, surname, title = get_person() | |
print(name, surname, title) # ('Fatos', 'Morina', 'Software Engineer') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment