Entering edit mode
3.1 years ago
jiyecec574
•
0
In python, I need help with a code that lets me view two atoms for a column from a pdb file. I used the following
new = df [‘atom_name’] == [ ‘NH1’ , ‘NH2’ ]
But nothing loads. Any suggestions on how to fix it
you are testing for boolean truth value with
==
and that operation will returnTrue
orFalse