Closed scottruona closed 8 years ago
Comparing strings should be done with ==, rather than is. Adding elements to a list is done with the .append() method.
==
is
.append()
Thanks for the fixes!
Comparing strings should be done with
==
, rather thanis
. Adding elements to a list is done with the.append()
method.