20 lines
292 B
Python
20 lines
292 B
Python
|
|
# veneno.py
|
||
|
|
|
||
|
|
def fetch(x):
|
||
|
|
|
||
|
|
print(f"launch -> data fetcher -> url -> {x}")
|
||
|
|
|
||
|
|
def eat(x,y):
|
||
|
|
|
||
|
|
"""Consumes x and y (pretend eating!).
|
||
|
|
|
||
|
|
Args:
|
||
|
|
x: The first amount to be consumed.
|
||
|
|
y: The second amount to be consumed.
|
||
|
|
|
||
|
|
Returns:
|
||
|
|
None
|
||
|
|
"""
|
||
|
|
|
||
|
|
print(f"Eating {x} and {y}...")
|