since this next simple code worked for me:
print(len(input("¿whats your name? i will give you how many letters it has if you tell me: ")))
I tried to make it fancier by trying to code a more "complete" answer:
print("your name has " + len(input("whats your name? i will give tell you how many letters it has if you tell me: ")) + " in it")
but it doesnt seem to work out.
the "output" tell me this:
Traceback (most recent call last): File "main.py", line 7, in print("your name has " + len(input("whats your name? i will give tell you how many letters it has if you tell me: ")) + " in it") TypeError: can only concatenate str (not "int") to str