Python 3
리스트가 특정 원소를 포함하는지 여부 if문
Coding_SJ
2020. 3. 21. 00:04
A = [a, b, c, d]
if 'a' in A:
~~~
A = [a, b, c, d]
if 'a' in A:
~~~