utils module¶
add(x, y)
¶
Add two given numbers
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x |
int/float
|
description |
required |
y |
int/float
|
description |
required |
Source code in geodemora/utils.py
16 17 18 19 20 21 22 23 |
|
multiply(x, y)
¶
Multiply two numbers
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x |
int/float
|
description |
required |
y |
int/float
|
description |
required |
Source code in geodemora/utils.py
34 35 36 37 38 39 40 41 |
|
random_string(string_length=3, use_seed=False)
¶
Generates a random string of fixed length.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
string_length |
int
|
Fixed length. Defaults to 3. |
3
|
Returns:
Name | Type | Description |
---|---|---|
str | A random string |
Source code in geodemora/utils.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
subtract(x, y)
¶
Subtract y from x.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x |
int/float
|
description |
required |
y |
int/float
|
description |
required |
Source code in geodemora/utils.py
25 26 27 28 29 30 31 32 |
|
Last update:
2022-06-06