여러 값에 대해 동일한 비교를 수행하는 경우 if 문에 비교를 작성하는 간단한 방법이 있습니까? 이 같은 것이 가능한지 궁금한 점이 있습니다. 도와 주셔서 감사합니다!구문 및/또는 파이썬 if 문의 속기
# same as:
# if a == 1 and b == 1 and c == 1:
if all(x == 1 for x in (a, b, c)):
...
을하거나 운영자 체인 사용할 수 있습니다 :
a =1
b =1
c =1
if a == 1 and b ==1 and c == 1:
print('yes')
# It would be nice if you could do this or something like it.
if a,b,c == 1:
print('this would be easier')
괜찮습니까? (a, b, c) == (1,1,2)'?? – Rafael