Skip to content

Commit c6a0f15

Browse files
authored
init: python task
1 parent 3ca7838 commit c6a0f15

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

41. Python Objects.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)