Python file.readline(2)读取前2个charectars

时间:2017-10-20 02:32:39

标签: python python-3.x python-3.6

我是Python的新手,您可能已经看到过我之前提到的有关类似问题的问题。我尝试运行下面的代码,但它只打印第一行的字母(Us)。这可能是我自己的初学者的愚蠢,但我真的很感激这个问题的一些帮助。如果您能解决我的问题,请提前感谢您!

代码我试图在下面运行:

    <script>swal({
      title: "Add Note",
      input: "textarea",
      showCancelButton: true,
      confirmButtonColor: "#1FAB45",
      confirmButtonText: "Save",
      cancelButtonText: "Cancel",
      buttonsStyling: true
    }).then(function () {
      swal(
        "Sccess!",
        "Your note has been saved!",
        "success"
      )
    }, function (dismiss) {
      if (dismiss === "cancel") {
        swal(
          "Cancelled",
"Canceled Note",
          "error"
        )
      }
    })</script>

1 个答案:

答案 0 :(得分:1)

改为使用getUserNumber = file.readlines()[1]

readline读取下一行,arg是要读取的字符数,所以之前您正在读取第一行的前两个字符。

所以你应该做的就是阅读所有的行(file.readlines()),然后选出你想要的行([1])。