Created
February 17, 2019 22:03
-
-
Save nickgrier07/dfe9b9212c30161f91707990f3f8fcaf to your computer and use it in GitHub Desktop.
File Test 01
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
| textstm = open("Inputstm.txt", 'w') | |
| textlist = ("This ", "is ", "a ", "test.") | |
| for i in textlist: | |
| textstm.write(i) | |
| textstm.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment