Created
March 4, 2017 15:15
-
-
Save lbxa/f1fffd283a88f9fbf80639ca5046c119 to your computer and use it in GitHub Desktop.
PyJoinParadigm
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
| # Auxilary file for random tests | |
| available = "Banana Split; Hot Fudge; Cherry; Malted; Black and White" | |
| sundaes = available.split(";") | |
| ''' | |
| <str_sep>.join(<str_list>) | |
| - string method | |
| ''' | |
| display_menu = ", ".join(sundaes) | |
| menu = "Our available flavors are {}".format(display_menu) | |
| print(menu) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@caiovsk