add over.callback.strings
This commit is contained in:
parent
89cbc24cbb
commit
44c47e50f0
2 changed files with 15 additions and 1 deletions
|
@ -34,3 +34,17 @@ def booleans(*args):
|
|||
out.append(boolean(arg))
|
||||
|
||||
return out
|
||||
|
||||
def strings(*args):
|
||||
"""
|
||||
Converts each element to str.
|
||||
|
||||
@while converting arguments to strings
|
||||
"""
|
||||
|
||||
out = []
|
||||
|
||||
for arg in args:
|
||||
out.append(str(arg))
|
||||
|
||||
return out
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue