Description比較演算子の連結Pythonでは、比較演算子を連結して使用できます。これにより、数値がある範囲内にあるかどうかや、3つの数値が互いに異なるかどうかなどを確認することができます。if 10 <= a <= 20: # 10 <= a かつ a <= 20 と同等 print('variable is in 10; 20 range') print('Great!') if a != b != c: # a != b かつ b != c と同等 print('b is different from both a and c') チャレンジ人の年齢が与えられたとき、その人の人生のステージを知りたいと思います:年齢範囲人生のステージ0-1Infant2-4Toddler5-12Child13-19Teen20-39Adult40-59Middle Age Adult60+Senior Adult 入力は単一の整数で与えられます。その人の人生のステージを出力してください。入力出力1Infant41Middle Age Adult ConstraintsTime limit: 2 secondsMemory limit: 512 MBOutput limit: 1 MBTo check your solution you need to sign inSign in to continue