I searched for other answers but couldn't get it right. It'd be awesome if someone could help me :) I keep getting this error: TypeError: can only concatenate str (not "NoneType") to str | on this code. I was trying to write a code that makes automatic e-mail based on the name of the person plus the ammount of characters in their name.
name = input("whats your name?")
number_of_letters = len(name+ "gmail.com")
print(len(name))
print((name) + (len(name)) + ("@gmail.com"))