[Solved] Python issue with “input” [closed]


Do you mean something like this?

answer1 = input("what device do you have? ")
answer2 = input("looks like you are using '{0}' as a device, but why? ".format(answer1))

print(answer2)

solved Python issue with “input” [closed]