Python 3.3 を使用しており、%s 関数を使用しようとしていますが、エラーが発生します。置いた
print("you're a %s man") % (input("put an adjective"))
次に、モジュールで実行してこれを取得します
you're a %s man
put an adjectivefunny
Traceback (most recent call last):
File "C:\Users\Me\Desktop\coding\mie.py", line 1, in <module>
print("you're a %s man") % (input("put an adjective"))
TypeError: unsupported operand type(s) for %: 'NoneType' and 'str'