Here is a simple example
amount1 = input(\"Insert your value: \") amount2 = input(\"Insert your value: \") print \"Your first value is\", amount1, \"your sec
With Python 3.6+ (PEP498), you can use formatted string literals, also known as f-strings:
amount1 = input('Insert your value: ') amount2 = input('Insert your value: ') print(f'Your first value is {amount1}, your second value is {amount2}')