Does this exist in Python? I want to combine an If statement that is very repetitive.
# ORIGINAL IF STATEMENT
if a < 100 and b < 100 and c < 100:
#pass
# I KNOW THIS IS WRONG, I JUST WANT TO KNOW IF THERE IS A WAY TO MAKE THE IF CONDITION SHORTER
if [a,b,c] < 100:
#pass