Change from system Python to environment python3. For Ubuntu 20.04, only `python3` is available and there's no `python`. So at least `python3` is consistent with Python virtual env, Ubuntu and anaconda.
12 lines
231 B
Python
Executable File
12 lines
231 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
fo = open(sys.argv[2], 'w')
|
|
|
|
for l in open(sys.argv[1]):
|
|
arr = l.split(',')
|
|
fo.write('%s' % arr[0])
|
|
for i in range(len(arr) - 1):
|
|
fo.write(' %d:%s' % (i, arr[i+1]))
|
|
fo.close()
|