- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
def del_space_both(t):
return del_space_end(del_space_begin(t))
def del_space_begin(text):
if len(text):
while text[:1] == ' ': text = text[1:]
return text
def del_space_end(text):
if len(text):
while text[-1:] == ' ': text = text[:-1]
return text
mr.The 09.04.2012 20:48 # 0
Lure Of Chaos 09.04.2012 21:55 # +4
lebutirate 10.04.2012 05:28 # 0
TheHamstertamer 10.04.2012 15:08 # 0
guest 09.04.2012 23:54 # +2
Во всей своей красе, встречайте.
lebutirate 10.04.2012 05:29 # +1
Lure Of Chaos 10.04.2012 08:37 # −3
eth0 10.04.2012 12:42 # +2
Lure Of Chaos 10.04.2012 13:35 # −2
FAKYOUINTIRNEAT 10.04.2012 14:20 # 0
eth0 10.04.2012 14:42 # 0
Lure Of Chaos 10.04.2012 14:48 # 0
guest 10.04.2012 19:21 # 0
guest8 09.04.2019 13:04 # −999