Python Practicals
Python Practicals
__________________________________________________________________________________
__________________________________________________________________________________
#Write a python script that remove given word from the string.
'''
s=input("Enter a String : ")
w=input("Enter a word to remove : ")
l=s.split()
if w in l:
l.remove(w)
ns=" ".join(l)
print("String after removing given word is :\n",ns)
'''
__________________________________________________________________________________
#WritE a python script that remove a latter from the given position.
'''
s=input("Enter a String : ")
p=int(input("Enter position to remove latter : "))
l=list(s)
l.pop(p)
ns="".join(l)
print("After removing latter : ",ns)
'''
_________________________________________________________________
#NUMBER:
__________________________________________________________________________________
_________________________________________________________________________________