reorg elab_query
This commit is contained in:
7
src/utils/general.py
Normal file
7
src/utils/general.py
Normal file
@@ -0,0 +1,7 @@
|
||||
def alterna_valori(val1: str, val2: str) -> any:
|
||||
"""
|
||||
Restituisce alternativamente il primo ed il secondo valore
|
||||
"""
|
||||
while True:
|
||||
yield val1
|
||||
yield val2
|
||||
Reference in New Issue
Block a user