Reading Raw Input

Sort by

recency

|

213 Discussions

|

  • + 0 comments

    personal opin: some times there is even bug in the input functions.. why it has to use stdin and stdout, also not very flexible for testing the code.

  • + 0 comments

    reading a martix from stdin and transpose

  • + 0 comments
    def read():
        s = input()
        return s
    
  • + 0 comments

    what is he difference between raw input and input ?

  • + 0 comments

    def read(): s = input() size=len(s) if ((size>=1)&(size<=500)): return s why run time error