Computer Science, asked by Anonymous, 6 months ago

Write a program to add two more employees details to the file "emp.txt" already

stored in disk.​

Answers

Answered by nkcthereaper
0

Answer:

with open("emp.txt","w") as r:

   x=input("Enter Employee adress=")

   y=input("Enter Employee phone number=")

   r.write(x)

   r.write(y)

Explanation:

Similar questions