The challenge is to square an input number.
import sys
# import numpy as np
# import pandas as pd
# from sklearn import ...
def square(x):
return print(x ** 2)
for line in sys.stdin:
print(line, end="")
I don't know how to use sys.stdin I guess because I don't know how to pass through the challenge test inputs for x.
Apologies, but I can't find any answers.