0
This program is correct or not
letters =["a","b"] digits = ["1","2"] def(x) return ("".join(x)) print(f(letters),f(digits),sep="") This program generate error and I don't know why
3 Réponses
0
Error is here def f(x):
^ ^
0
Also you can change
print(f(letters),f(digits),sep="")
To
print(f(letters+digits))
0
Thanks 😆