240 发简信
IP属地:四川
  • python2.X/3.X遇到的小问题—2018-04-23

    1. python2.x print 后可不加括号直接输出 python3.x print后必须加小括号将输出括起来 2. python2....

  • sys.stdin/stdout标准输入输出—2018-04-20

    在使用Python标准输入输出时(在笔试题中要求较多),平时使用大多是raw_input与print。因此,下面将两者等价方法写出来: 1. p...