英文:
Why do I get a Float data type for an Integer arithmetic function?
问题
check = (3*3+3/3-3)
print(check)
print(type(check))
o/p
7.0
<class 'float'>
Logic or Fundamentals
英文:
check = (3*3+3/3-3)
print(check)
print(type(check))
o/p
7.0
<class 'float'>
Logic or Fundamentals
答案1
得分: 0
/
运算符是一个浮点除法运算符。它总是返回一个浮点数。
>>> 3/3
1.0
英文:
The /
operator is a float division operator. It always returns a float.
>>> 3/3
1.0
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论