-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_strings.py
163 lines (112 loc) · 3.85 KB
/
about_strings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
from koans_plugs import *
def test_string_indexes():
"""
В строке можно обращаться к отдельным символам
"""
str1 = 'Hello, world!'
assert str1[5] == ","
def test_string_slice():
"""
Из строки можно брать срез
"""
str1 = 'Hello, world!'
assert str1[5:9] == ', wo'
def test_string_for():
"""
По строке можно итерироваться, как по списку
"""
str1 = 'Hello, world!'
symbol_count = 0
for symbol in str1:
symbol_count += 1
assert symbol_count == 13
def test_string_add():
"""
Строки можно складывать
"""
str1 = 'Hello, ' + 'world!'
assert str1 == 'Hello, world!'
def test_string_add_extra():
"""
Можно добавлять строки к уже существующей
"""
str1 = 'Hello, '
str1 += 'world!'
assert str1 == 'Hello, world!'
def test_string_convert_int():
"""
Числа можно преобразовывать в строку
"""
str1 = str(123)
assert str1 == '123'
def test_string_add_int():
"""
Строки нельзя складывать c числами без преобразования числа в строку
"""
str1 = 'Hello, ' + str(123)
assert str1 == 'Hello, 123'
def test_string_len():
"""
Длину строки можно померить функцией len
"""
str1 = len('Hello, ')
assert str1 == 7
def test_string_split():
"""
Строку можно разбить другой строкой на список строк
"""
str1 = 'Hello, world! Hello, everyone!'
splited_str = str1.split(' ')
assert ['Hello,', 'world!', 'Hello,', 'everyone!'] == splited_str
def test_string_join():
"""
Список строк можно объединить в одну строку
"""
str1 = '! '.join(['Hello', 'world', 'Hello', 'everyone'])
assert str1 == 'Hello! world! Hello! everyone'
def test_string_methods():
"""
У строки есть методы для приведения некоторых ее символов в разные регистры
"""
assert 'Hello' == 'hello'.capitalize()
assert 'HELLO' == 'hello'.upper()
assert 'hello world' == 'Hello World'.lower()
assert 'Hello World' == 'hello world'.title()
assert 'hElLO WorLD' == 'HeLlo wORld'.swapcase()
def test_string_in():
"""
В строке легко можно проверить наличие подстроки
"""
str1 = 'Hello, world!'
find_in_str1 = 'world' in str1
assert find_in_str1 == True
def test_string_format():
"""
В строку можно подставлять объекты различных типов с помощью форматирования
"""
str1 = 'Hello, {}! {}'
str2 = str1.format(123, 'Hello')
assert str2 == 'Hello, 123! Hello'
def test_string_empty():
"""
Пустая строка может использоваться при вычислении логических выражений
"""
str1 = ''
str2 = ''
str3 = 'hello'
empty_string = not str1
assert empty_string == True
empty_string = str1 or str2 or not str3
assert empty_string == False
def test_string_compare():
"""
Строки можно сравнивать, сравнение производится в лексикографическом порядке.
"""
str1 = 'Hello, world!'
str2 = 'Hello, ' + 'world!'
string_compare = str1 == str2
assert string_compare == True
string_compare = 'AAA' < 'AAB'
assert string_compare == True
string_compare = 'aAA' < 'AAB'
assert string_compare == False