0
In the following code:
def FuncEx(hashTag, lang="pt-br", pages=3):
sel.get(f"A hashtag {hashTag}, na linguagem {lang}, no total de {pages} páginas.")
How could I do if I wanted to pass only the parameters hashTag
and pages
, leaving the lang
by default?
I tried something like:
FuncEx("politica", null, 2)
But it didn’t happen.