Skip to content

Instantly share code, notes, and snippets.

@nickgrier07
Created February 17, 2019 22:03
Show Gist options
  • Select an option

  • Save nickgrier07/dfe9b9212c30161f91707990f3f8fcaf to your computer and use it in GitHub Desktop.

Select an option

Save nickgrier07/dfe9b9212c30161f91707990f3f8fcaf to your computer and use it in GitHub Desktop.
File Test 01
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