比較演算子の連結

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-1
Infant
2-4
Toddler
5-12
Child
13-19
Teen
20-39
Adult
40-59
Middle Age Adult
60+
Senior Adult
 
入力は単一の整数で与えられます。その人の人生のステージを出力してください。
入力
出力
1
Infant
41
Middle Age Adult
 

Constraints

Time limit: 2 seconds

Memory limit: 512 MB

Output limit: 1 MB

To check your solution you need to sign in
Sign in to continue