Created
August 14, 2018 13:07
-
-
Save lol97/99e2c09440f46eb3014033ab90bb12bf 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
| def string_splosion(data): | |
| for x in range(len(data)): | |
| print(data[:x+1],end="") | |
| string_splosion("lele") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment