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:
|
||||||
|
@ -5,4 +5,4 @@ def is_almost_prime(x, limit):
|
|||||||
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