“Funkcja paska Pythona” Kod odpowiedzi

Co to jest funkcja paska r w Pythonie

#!/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

Funkcja paska Pythona

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

Przykład funkcji paska Pythona

name = 'softhunt.net'
print(name)

strip_string = 'net'

print(name.strip(strip_string))
Outrageous Ostrich

Prosty przykład funkcji paska Pythona

string = "softhunt.net"

print(string)

print(string.strip())

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

Odpowiedzi podobne do “Funkcja paska Pythona”

Pytania podobne do “Funkcja paska Pythona”

Więcej pokrewnych odpowiedzi na “Funkcja paska Pythona” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu