Created
November 4, 2018 22:05
-
-
Save antunesleo/d742403c892e0031fb40060fd60a19b6 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
nomes = ["Leonardo", "Jao", "Ana"] | |
# Mais lento, usa mais memória pois cada vez que nomes_string | |
# recebe um valor um novo objeto em memória criado | |
nomes_string = "" | |
for nome in nomes: | |
nomes_string += nome | |
nomes_string = ''.join(nomes) # Mais rápido, pythonico e usa menos memória |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment