Created
May 4, 2020 20:26
-
-
Save LimaGuilherme/878c7a2cfaba196fe0b1f9a88dcf8562 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
| f = open('workfile' ,'w') | |
| new_content = 'someContent' | |
| f.write(new_content) | |
| f.seek(0) | |
| line = f.readline() | |
| print line | |
| >> someContent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment