gpt4 book ai didi

python-3.x - 如何用 Python 编写代码来获取比率 (x :y) format of given two numbers or for the percentage of the given two numbers

转载 作者:行者123 更新时间:2023-12-02 02:25:55 29 4
gpt4 key购买 nike

给定学生和铅笔的数量,假设学生有 154 名,铅笔有 93 名,如何用 Python 编写代码来获得比率。

输出:x:y

或者说给定两个数字的百分比并找出比率。

输出:x:y

最佳答案

import math 
x = 50
y = 10
print(str(int(round(x / (math.gcd(50, 10)),0))) + ':'+ str(int(round(y / (math.gcd(50, 10)),0))))

输出:5:1

关于python-3.x - 如何用 Python 编写代码来获取比率 (x :y) format of given two numbers or for the percentage of the given two numbers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65640220/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com