“Perbarui String di Python” Kode Jawaban

Python mengganti string

# string.replace(old, new, count),  no import is necessary
text = "Apples taste Good."
print(text.replace('Apples', 'Bananas'))          # use .replace() on a variable
Bananas taste Good.          <---- Output

print("Have a Bad Day!".replace("Bad","Good"))    # Use .replace() on a string
Have a Good Day!             <----- Output

print("Mom is happy!".replace("Mom","Dad").replace("happy","angry"))  #Use many times
Dad is angry!                <----- Output
Dr. Robert Brownell

Perbarui String di Python

var1 = 'Hello World!'
print ("Updated String :- ", var1[:6] + 'Python')
Happy Hare

Jawaban yang mirip dengan “Perbarui String di Python”

Pertanyaan yang mirip dengan “Perbarui String di Python”

Lebih banyak jawaban terkait untuk “Perbarui String di Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya