分數到小數在線轉換工具

整數
分子
分母

10進制10

關於分數到小數在線轉換工具:

這個在線分數到小數轉換工具可幫助您將一個分數轉換為小數.輸入分子和分母,小數會顯示在結果框中.

分數(Fraction):

黑線上方的數字是分子,黑線下方的數字是分母. 雖然分子和分母都是自然數,但它自身代表的數值有時不能表示為自然數.

十進制(Decimal):

十進制數字系統(也稱為阿拉伯語)有10種字符,包括(0, 1, 2, 3, 4, 5, 6, 7, 8, 9) ,它是我們日常生活中使用最多的數字系統.

comic fraction to decimal

如何進行分數到小數轉換?

分子除以分母.

分數到小數轉換錶:

分數 十進制 分數 十進制
1/2 0.5 1/6 0.16666667
1/3 0.33333333 2/6 0.33333333
2/3 0.66666667 3/6 0.5
1/4 0.25 4/6 0.66666667
2/4 0.5 5/6 0.83333333
3/4 0.75 1/7 0.14285714
1/5 0.2 2/7 0.28571429
2/5 0.4 3/7 0.42857143
3/5 0.6 4/7 0.57142858
4/5 0.8 5/7 0.71428571

鏈接:

維基百科(分數): https://en.wikipedia.org/wiki/Fraction_(mathematics)

維基百科(十進制): https://en.wikipedia.org/wiki/Decimal

用Python進行分數到小數轉換:

def fraction_to_decimal(numerator, denominator):
    return numerator / denominator


numerator_input = 12
denominator_input = 72
decimal_output = fraction_to_decimal(numerator_input, denominator_input)
print('decimal result is:{0}'.format(decimal_output))

-------------------
decimal result is:0.16666666666666666