I have a data frame, say :
Name Visits 0 Z 0 1 A 0 2 B 1 3 C 1 4 D 0 5 E 0
Now, I made a list with those names whose visits are 0, so it has Z, A, D, and E. Now, I randomly choose 2 names from these 4. Then, I want to increase the visits of these 2 people by 1. How do I reference only these 2 names, access their corresponding visits and alter it? [In python, Pandas] Thank you!