Poprawka złych plików
This commit is contained in:
parent
4481e139c5
commit
693e317962
@ -1,4 +1,4 @@
|
|||||||
def farenheit(x):
|
def fahrenheit(x):
|
||||||
if x< -273.15:
|
if x< -273.15:
|
||||||
return -459.67
|
return -459.67
|
||||||
else:
|
else:
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
def is_almost_prime(x, limit):
|
def is_almost_prime(x, limit):
|
||||||
if x <0:
|
if x < 0:
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
for y in range(2, limit+1):
|
for y in range(2, limit+1):
|
||||||
if(x % y == 0):
|
if(x % y == 0):
|
||||||
return False
|
return False
|
||||||
reutrn True
|
return True
|
Loading…
Reference in New Issue
Block a user