other ways to print in python code example
Example 1: how to cout in python
What is your name? <user input data here>
Example 2: print command in python
print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)
What is your name? <user input data here>
print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)