Skip to content

Commit 5385695

Browse files
committed
Use dashes instead of underscores in filenames
1 parent ddc14db commit 5385695

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

numpy/input-output/solution/input-output.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
filename = sys.argv[1]
55
xy = np.loadtxt(filename)
66
xy[:,1] += 2.5
7-
np.savetxt('new_' + filename, xy, fmt='%.6f', header='modified data')
7+
np.savetxt('new-' + filename, xy, fmt='%.6f', header='modified data')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../xy-coordinates.dat

numpy/input-output/solution/xy_coordinates.dat

-1
This file was deleted.

0 commit comments

Comments
 (0)