Skip to content

Instantly share code, notes, and snippets.

@takahub1
Last active January 12, 2017 19:41
Show Gist options
  • Save takahub1/7a9b65cff45a45871539902b2632d46a to your computer and use it in GitHub Desktop.
Save takahub1/7a9b65cff45a45871539902b2632d46a to your computer and use it in GitHub Desktop.
test description
#!/usr/bin/env python
f = open('ati_array_.txt','w')
for line in open ('ati_array.txt','r'):
itemList = line.strip()
print itemList
f.write(itemList)
f.write(',')
f.close()
@takahub1
Copy link
Author

1
2
3
4

1,2,3,4,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment