How to read user input until EOF in python? · First method (recommened): from sys import stdin for line in stdin: if line == '': # If empty string is read then ...
確定! 回上一頁