Skip to content

Commit 7040375

Browse files
Update doc/source/user_guide/io.rst
Co-authored-by: William Ayd <william.ayd@icloud.com>
1 parent 28fb8dd commit 7040375

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/source/user_guide/io.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1699,7 +1699,7 @@ The conversion process is not always guaranteed to be accurate because small dif
16991699
x1 = df1.iloc[0, 0]
17001700
x2 = df2['One'][0]
17011701
1702-
print("x0 = %f; x1 = %f; Are they equal? %s" % (x0, x1, (x0 == x1)))
1702+
print(f"x0 = {x0}; x1 = {x1}; Are they equal? {x0 == x1}")
17031703
print("x0 = %f; x2 = %f; Are they equal? %s" % (x0, x2, (x0 == x2)))
17041704
17051705
os.remove('test.csv')

0 commit comments

Comments
 (0)