How does pyCharm use the fileinput.input() function?
That is, how can I point to the incoming file?
i=1 for line in fileinput.input(): path1 = line.rstrip("\n") print("File #", i, path1) i = i + 1 Here, for example, this piece of code that I could run in a far manager, and now I want to switch to pyCharm, but I cannot run this code here.