Created
April 14, 2021 21:25
-
-
Save jorgezanguettin/99cc5550fe1517ce9689e4ed92929730 to your computer and use it in GitHub Desktop.
armazenar_dados
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 armazenar_dados(dadosObtidos): | |
arquivo = open('roupas.csv', 'a+', encoding='utf-8') | |
arquivo.write(dadosObtidos) | |
arquivo.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment