📜  健康定义 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:28.990000             🧑  作者: Mango

代码示例1
mentally_fit = True
physically_fit = True
socially_fit = True

if mentally_fit and physicall_fit and socially_fit:
  print('You are healthy in all aspects of life')
else:
  print('You are not healthy in all aspects. Do not feel shy to get help')