word1=para
for schar in special1:
word1=word1.replace(schar,"")
rword2=word1[69::-1]
print(rword2)
s=rword2.replace(" ","")
l=(len(s))
ns=""
for c in s[0:l-1]:
ns=ns+c+special2
ns=ns+s[l-1]
print(ns)
l_len=len(list1)
true=0;
for li in list1:
if(para.find(li)!=-1):
true=true+1
if(true==l_len):
print("Every string in {} were present".format(list1))
else:
print("Every string in {} were not present".format(list1))
w_list=list(word1.split())
print(w_list[0:20])
less_list=list()
for less in w_list:
if(w_list.count(less)<3):
less_list.append(less)
less_list1=list(dict.fromkeys(less_list))
print(less_list1[-20:])
print(word1.rfind(strfind))
print(word1.find(strfind,len(word1)-150,(len(word1))))