Skip to content

Instantly share code, notes, and snippets.

@iH8c0ff33
Created April 28, 2016 10:54
Show Gist options
  • Save iH8c0ff33/825fc69d1db9471688fa85e4ff40967d to your computer and use it in GitHub Desktop.
Save iH8c0ff33/825fc69d1db9471688fa85e4ff40967d to your computer and use it in GitHub Desktop.
lines = []
for line in open('Dati.txt').readlines():
lines.append(line.replace(',','.'))
file = open('Dati.txt', 'w')
for line in lines:
file.write(line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment