133. String Lstrip and Rstrip Method in Python with Example Code || Python String Methods-15

Pubblicato il: 03 ottobre 2022
sul canale di: Ram Case
11
0

Code:
random_string=' this is good.'
print(random_string.lstrip())
print(random_string.lstrip('sti'))

print(random_string.lstrip('s ti'))

website='https://www.wikipedia.com/'
print(website.lstrip('htps:/.'))

s1=' I love Python Tutorial '
print(s1.lstrip())
s2='###HelloWorld###'
print(s2.lstrip('#'))
#rstrip

random_string='this is good '
print(random_string.rstrip())

print(random_string.rstrip('si oo'))

print(random_string.rstrip('sid oo'))

website='www.wikipedia.com/'
print(website.rstrip('m/.'))

s1=' I Love Python Tutorials '
print(s1.rstrip())

s2='###HelloWorld###'
print(s2.rstrip('#'))


In questa pagina del sito puoi guardare il video online 133. String Lstrip and Rstrip Method in Python with Example Code || Python String Methods-15 della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Ram Case 03 ottobre 2022, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 11 volte e gli è piaciuto 0 spettatori. Buona visione!