“Функция Python Strip” Ответ

Что такое функция r strip в Python

#!/usr/bin/python

str = "     this is string example....wow!!!     ";
print str.rstrip()
str = "88888888this is string example....wow!!!8888888";
print str.rstrip('8')

#the answer

#this is string example....wow!!!
#88888888this is string example....wow!!!
Poor Peccary

Функция Python Strip

name = " softhunt.net "

print(name)

print(name.strip())
Outrageous Ostrich

Python String: .strip ()

# Мөрний эхэн ба төгсгөлийн тэмдэгтүүдийг арилгахын тулд .strip() аргыг ашиглаж болно.
# Мөрийн аргументыг арга руу дамжуулж, арилгах тэмдэгтүүдийн багцыг зааж өгч болно.
# Аргын аргумент байхгүй бол хоосон зай арилна.

text1 = '   apples and oranges   '
text1.strip()       # => 'apples and oranges'
 
text2 = '...+...lemons and limes...-...'
 
# Here we strip just the "." characters
text2.strip('.')    # => '+...lemons and limes...-'
 
# Here we strip both "." and "+" characters
text2.strip('.+')   # => 'lemons and limes...-'
 
# Here we strip ".", "+", and "-" characters
text2.strip('.+-')  # => 'lemons and limes'
Puzzled Porcupine

Пример функции Python Strip

name = 'softhunt.net'
print(name)

strip_string = 'net'

print(name.strip(strip_string))
Outrageous Ostrich

Простой пример функции Python Strip

string = "softhunt.net"

print(string)

print(string.strip())

print(string.strip('softhunt'))
Outrageous Ostrich

Ответы похожие на “Функция Python Strip”

Вопросы похожие на “Функция Python Strip”

Больше похожих ответов на “Функция Python Strip” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования