xxxxxxxxxx
fp=open("Lily.txt","r")
data=fp.read()
fp1=open("Rose.txt","w")
output=""
str1=data.split()
for word in str1:
if word[0].lower() not in ['a','e','i','o','u']:
output=output+word+" "
fp1.write(output)
print("data copied")
fp.close()
fp1.close()