def isinteger(x):
while x > 0.0:
x = x - 1.0
if x < 0.0:
return 0.0
elif x == 0:
return 1.0
d = input( )
print isinteger(d)
守则有点不言自明。 I m 用它作一片断层口译。 我的问题是: 我投入了一部分,如22/7,我获得一份产出。 它是否与伊斯兰组织做些什么?
def isinteger(x):
while x > 0.0:
x = x - 1.0
if x < 0.0:
return 0.0
elif x == 0:
return 1.0
d = input( )
print isinteger(d)
守则有点不言自明。 I m 用它作一片断层口译。 我的问题是: 我投入了一部分,如22/7,我获得一份产出。 它是否与伊斯兰组织做些什么?
22/7.0
。 这两条均导致<代码>3.146......。
If you re using python 2, inputting "22/7" directly leads to integer division, i.e. it rounds your input down to 3, thus the algorithm returns 1. Try inputting 22.0/7 instead.
而且,如果你重新使用这一算法,你可能希望考虑更快捷的替代办法。 可能性:
def isinteger(x):
return int(x) == x
def isinteger(x):
return isinstance(x, int)
如果你想要检查ger,例如发现大精炼的广场,那么你必须考虑双亲代表不准确(不要求正面数字,而是需要消极数字):
x = -190.00000000001
print int(x) == x
epsilon = 1E-10
def isinteger(n):
" near enoungh to pass as integer considering round of errors "
return abs(n-int(n)) < epsilon
print isinteger(x)
据认为,捆绑的Eval,2 过于强大,无法安全。 如果你想要输入数字,而不是让用户给出任何公式(而且每例都需要增加......用户投入的处理除外):
number = raw_input( Give number: )
number = int(number) if all(c.isdigit() for c in number) else float(number)
print number
你们的投入都是分类的,因此可以提供3项投入,从而产生1项产出。
Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...
I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...
Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...
Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...
I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...
Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...
Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...
I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...