What is the following code doing? 1
File = open(“contact.csv”, “a”)
Name= input(“Please enter your Name:”)
Phno= input(“Enter your contact number:”)
File.write(Name + “ ,” + Phno + “\n”)
Answers
Answered by
0
Explanation:
the above code
append name and phone no
by user
Similar questions