14 lines
343 B
Python
14 lines
343 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
###### Misc functions for Cyclone Host ######
|
||
|
|
||
|
def floats(val): # This is used to convert a float value to a string (avoiding exponent notation)
|
||
|
return '{:.3f}'.format(float(val)) # It truncates the decimals that aren't used
|
||
|
|
||
|
def isOdd(number):
|
||
|
if number % 2 == 0:
|
||
|
return 0 # Even number
|
||
|
else:
|
||
|
return 1 # Odd number
|
||
|
|