I'm trying to undestand how input
works.
Given for example a simple function like:
def f():
s = input()
print(s)
There's a way to call f
and make it print something without building pipelines?
Obviously without typing anything into the termimal.