日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

用python预测小孩的身高_Python 孩子身高预测

發布時間:2023/12/20 python 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 用python预测小孩的身高_Python 孩子身高预测 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Python 孩子身高預測:

源代碼:

# 創建死循環,直至 用戶自行 選擇 退出

while True :

# 分割線

print('*'*60)

print('*'*10,'歡迎來到 孩子身高 預測系統','*'*10)

# 功能選擇

print('\t1、預測查詢')

print('\t2、退出系統')

menus_select = input('請選擇功能( 1、2 ):')

# 對輸入的內容進行判斷

if menus_select == '1' or menus_select == '預測查詢' :

father_height = float(input('請輸入父親身高:'))

mother_height = float(input('請輸入母親身高:'))

children_gender = input('請輸入孩子性別(女 或 男):')

if children_gender == '男':

# 固定的計算公式

boys_height_min = (45.99) + ((0.78 * (father_height + mother_height)) / 2) - (5.29)

boys_height_max = (45.99) + ((0.78 * (father_height + mother_height)) / 2) + (5.29)

boys_height_result = f'孩子的身高預估在: {boys_height_min}CM 與 {boys_height_max}CM 之間'

print(boys_height_result)

elif children_gender == '女':

girls_height_min = (37.85) + ((0.75 * (father_height + mother_height)) / 2) - (5.29)

girls_height_max = (37.85) + ((0.75 * (father_height + mother_height)) / 2) + (5.29)

girls_height_result = f'孩子的身高預估在: {girls_height_min}CM 與 {girls_height_max}CM 之間'

print(girls_height_result)

else:

print('請正確輸入孩子性別')

elif menus_select == '2' or menus_select == '退出系統' :

break

else :

print('請選擇正確的功能項')

# 分割線

print('*' * 60)

print()

print()

運行效果:

總結

以上是生活随笔為你收集整理的用python预测小孩的身高_Python 孩子身高预测的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。