我正在做一個程序,它劃分了很多數字,我想檢查數字是否得到小數。我也希望它能打印這些小數。例如:Python檢查小數
foo = 7/3
if foo has a 3 in the decimals: (Just an example of what I want to do there)
print("It works!)
elif foo has no decimals: (another example)
print("it has no decimals")
編輯:好了,因爲「檢查哪個小數是繼」帶來了一些困惑,讓我解釋一下。我希望能夠檢查一個數字是否有小數。例如,7/3(foo)給了我小數,但我希望python告訴我,沒有我必須做數學。忘記「哪一個小數」部分
你的具體問題是什麼? –