Answer:
statements = tuple(input("Enter four statements separated by comma: ").split(","))
st1, st2, st3, st4 = statements
#print with:
print(f"{st1}, {st2}, {st3}, {st4}")
# or:
print("{}, {}, {}, {}".format(st1, st2, st3, st4))
Explanation:
The input function in python is used to prompt for user input. It returns a string. The code above splits the string of the input function and converts it to a tuple, which is unpacked in four variables st1, st2, st3, and st4.
The variables can be printed out as strings directly or by using the "f" keyword or the format function.