Computer Science, asked by ridhamkj, 6 months ago

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 RuwaisnZaid
0

Explanation:

the above code

append name and phone no

by user

Similar questions