Write a python program to input roll no and name from the user and append them to the file student .csv
Answers
Answered by
2
roll_no = input()
name = input()
file = open("student.csv", "a")
file.write(f" {roll_no} : {name} /n")
Please Thank Me
And Mark this as Brainliest
Similar questions
Math,
4 months ago
India Languages,
4 months ago
Political Science,
9 months ago
Hindi,
9 months ago
Physics,
1 year ago
Science,
1 year ago