Advertisements
Advertisements
प्रश्न
How will you delete a string in Python?
टीपा लिहा
उत्तर
Python will not allow deleting a particular character in a string. Whereas you can remove the entire string variable using the del command.
Example:
Code lines to delete a string variable
>>> str1=”How about you”
>>> print (str1)
How about you
>>> del str1
>>> print (str1)
NameError: name ‘str1’ is not defined
shaalaa.com
Modifying and Deleting Strings
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?