how do I make python take < as pert of a string input? code example
Example 1: input python 3
answer = input("What is your name? ")
print(f"Your name is {answer}")
Example 2: python text input
name = input("Input message here")
answer = input("What is your name? ")
print(f"Your name is {answer}")
name = input("Input message here")