개발/Python
logical operators in Python
Byunpa24
2021. 8. 17. 11:39
반응형
In dart,
And: &&
or: ||
not: !
In Python,
And: and : if () and (): ()는 선택적이나 해주는것이 깔끔하다
or: or
not: not
반응형