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 d352592 commit 92dd1daCopy full SHA for 92dd1da
doc/source/user_guide/io.rst
@@ -1700,7 +1700,8 @@ The conversion process is not always guaranteed to be accurate because small dif
1700
x2 = df2['One'][0]
1701
1702
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)))
+ print(f"x0 = {x0}; x2 = {x2}; Are they equal? {x0 == x2}")
1704
+
1705
1706
os.remove('test.csv')
1707
0 commit comments