We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fad493c commit 8c04cb5Copy full SHA for 8c04cb5
1 file changed
tests/snippets/strings.py
@@ -36,3 +36,6 @@
36
assert b.strip() == 'hallo'
37
assert b.lstrip() == 'hallo '
38
assert b.rstrip() == ' hallo'
39
+
40
+c = 'hallo'
41
+assert b.capitalize() == 'Hallo'
0 commit comments