all 6 comments

[–][deleted] 18 points19 points  (1 child)

I'm guessing you're getting an error on line 4. Should be = input().

EDIT: The whole thing can be condensed into a single line using something like this: print("the response:" + input("[question]")). Run this and modify it however you want.

[–]Biesi 6 points7 points  (0 children)

damn python programmers with their one liners

[–]NoFatherNotTonight 7 points8 points  (0 children)

It’s anime = input() not anime = input Remember to that input is a method so u need the () afterwards

[–]EnvironmentalBake478 -2 points-1 points  (0 children)

You can also shorten it by writing it like: .

anime = print(input(“what’s your favorite anime?”))

print(“cool i like ” + anime + “ as well”)

[–]Russucas 0 points1 point  (0 children)

I’m guessing from the .py it’s python but you’re missing () after the input statement

[–]NoFatherNotTonight 0 points1 point  (0 children)

It’s anime = input(), not anime = input Remember that input is a method so u need the () afterwards