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 30210f6 commit 434d673Copy full SHA for 434d673
python3/koans/about_string_manipulation.py
@@ -21,7 +21,7 @@ def test_any_python_expression_may_be_interpolated(self):
21
import math # import a standard python module with math functions
22
23
decimal_places = 4
24
- string = "The square root of 5 is {0:.{1}f}".format(math.sqrt(5), \
+ string = "The square root of 5 is {0:.{1}f}".format(math.sqrt(5),
25
decimal_places)
26
self.assertEqual(__, string)
27
0 commit comments