-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrings.py
53 lines (44 loc) · 1.4 KB
/
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
import re
name = " ..My big string.."
print(name.title())
print(name.upper())
print(name.lower())
print("Privet stroka nomer1\nPrivet stroka N2\n\nStroka N3")
print("Messages:\n\tMessage1\n\tMessage2\n\tMessage3\nEND")
print("Lower name: " + name.lower())
print(name.rstrip())
print(name.lstrip())
print(name.strip()) # Udalenie probelov
print(name.strip(".")) # Udalenie to4ek
mylist = []
msg =""
while msg != 'stop'.upper():
msg = input("Enter new item, and STOP to finish ")
mylist.append(msg)
print(mylist)
mytext = "Vasya aaaaaaaa 1972, Kolya - 19727777: Olesya 1981, [email protected]," \
"[email protected], Petya ggggggggg, 1992,[email protected], " \
"[email protected], [email protected], hello hello, Misha #43 1984, " \
"Vladimir 1977, Irina , 2001, [email protected], [email protected]," \
"""
\d = Any Digit 0-9
\D = Any non DIGIT
\w = Any Alphabet symbol [A-Z a-z]
\W = Any non Alphabet symbol
\s = breakspace
\S = non breakspace
[0-9]{3}
[A-Z][a-z]+
"""
textlookfor = r"@\w+\.\w+"
allresults = re.findall(textlookfor, mytext)
print(allresults)
# Get similar start
strs = ["flower", "flow", "flight"]
shortest = min(strs, key=len)
for i, ch in enumerate(shortest):
for other in strs:
if other[i] != ch:
print(shortest[:i])
print(shortest)