Computer Science, asked by dharmweb123, 4 days ago

how will you replace text using replace command in word​

Answers

Answered by zaeemdurani
0

Answer:

str.replace('old', 'new')

Explanation:

this is for Python

x = 'Hello World'

print(x.replace('World', 'Guys')

# Output will be Hello Guys

Answered by ayazayazmistari
0

Answer:

old,new replace text in word

Similar questions