We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28fb8dd commit 7040375Copy full SHA for 7040375
doc/source/user_guide/io.rst
@@ -1699,7 +1699,7 @@ The conversion process is not always guaranteed to be accurate because small dif
1699
x1 = df1.iloc[0, 0]
1700
x2 = df2['One'][0]
1701
1702
- print("x0 = %f; x1 = %f; Are they equal? %s" % (x0, x1, (x0 == x1)))
+ print(f"x0 = {x0}; x1 = {x1}; Are they equal? {x0 == x1}")
1703
print("x0 = %f; x2 = %f; Are they equal? %s" % (x0, x2, (x0 == x2)))
1704
1705
os.remove('test.csv')
0 commit comments