0
What's this mean?
I am new to python and am confused on what this means "h" != "w" it was in the statement assert "h" != "w"
1 Resposta
+ 5
"h" != "w"
does the String "h" not equal the String "w"
results of this expression is true
assigning sign:
=
testing equal sign:
==
testing inequality sign:
!=