input and output python code example
Example 1: input python
name = input("Enter your name: ")
#Printing the variable (name)
print("hello",name)
Example 2: input stdout python
import sys
data = sys.stdin.readline()
sys.stdout.write('Dive in')
Example 3: how to use inputs in python
# python 3.8
YourInout = input("your text input")
print(YourInput)