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 3ca7838 commit c6a0f15Copy full SHA for c6a0f15
41. Python Objects.py
@@ -0,0 +1,8 @@
1
+'''Приведите строку text к нижнему регистру и напечатайте её на экран. Пример метода, выполняющего эту задачу приведен в теории.'''
2
+
3
+text = 'a MIND needs Books as a Sword needS a WHETSTONE.'
4
5
+# BEGIN
6
+lower_text = text.lower()
7
+print(lower_text)
8
+# END
0 commit comments