sympy.frac(x)函數表示x的小數部分。對於實數,它定義為x-[x]
用法: sympy.frac()
返回:返回簡化的數學表達式。
範例1:
Python3
# import sympy
from sympy import *
# Use sympy.frac() method
gfg = frac(5.36)
print(gfg)
輸出:
0.36
範例2:
Python3
# import sympy
from sympy import *
# Use sympy.frac() method
gfg = frac(Rational(7, 5))
print(gfg)
輸出:
2 / 5
相關用法
- Python set()用法及代碼示例
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python PyTorch div()用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python Pytorch eye()用法及代碼示例
- Python os.chdir()用法及代碼示例
- Python Numpy np.fft()用法及代碼示例
- Python isinstance()用法及代碼示例
- Python PIL putdata()用法及代碼示例
- Python numpy.ma.ids()用法及代碼示例
- Python os.utime()用法及代碼示例
- Python os.kill()用法及代碼示例
- Python PIL GaussianBlur()用法及代碼示例
- Python PIL getcolors()用法及代碼示例
- Python os.WIFSTOPPED()用法及代碼示例
- Python os.WIFCONTINUED()用法及代碼示例
注:本文由純淨天空篩選整理自sanjoy_62大神的英文原創作品 sympy.frac() method in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。