InterviewSolution
Saved Bookmarks
| 1. |
How you can “update” an existing string ? |
|
Answer» You can “update” an existing string by (re) assigning a variable to another string The new value can be related to its previous value or to a completely different string altogether. Following is a simple example : # !/usr/bin/python var1 = ‘Hello World!’ print”Updated String:-“,var i[:6] + ‘Python’ |
|