Computer Science, asked by kavitasharma63, 5 months ago

write a python program to read a text file line by line and desplay each word separated by #

Answers

Answered by RuwaisnZaid
0

Explanation:

f = open("data.txt","r")

h = f.read()

while h!="":

k = list(h)

for i in k:

print(I,end="#")

#mark me brainly

plz follow me

Similar questions