twoTwo simple ways of doing this:
"".join(map(str, A))
"".join([str(a) for a in A])
"".join(map(str, A))
"".join(str(a) for a in A)
two simple ways of doing this
"".join(map(str, A))
"".join([str(a) for a in A])
Two simple ways of doing this:
"".join(map(str, A))
"".join(str(a) for a in A)
two simple ways of doing this
"".join(map(str, A))
"".join([str(a) for a in A])
lang-py