python中的代码出错

时间:2016-08-10 03:56:11

标签: python

AttributeError: 'list' object has no attribute 'split'

我有问题

<div id="header">
            <div id="navbar">
                <ul>
                    <li>
                        <a href="register.php" class="register_link">Register</a>
                    </li>
                    <li>
                        <a href="loginq.php" class="login_link">Login</a>
                    </li>
                </ul>
            </div>
        </div>


#header {
  background-color: purple;
  display: flex;
  justify-content: space-between;
}

ul {
  list-style-type: none;
}

ul li{
  display:inline-block;
}

#navbar {
  background-color: red;
}

1 个答案:

答案 0 :(得分:0)

split()返回文件中所有行的列表。而split()是一个字符串方法。正如@ inspectorG4dget建议您使用read()一样,请使用data=open('D:\\file_path','r') x= data.read() tw= x.split("separator") 将文件内容作为字符串返回。

 :
 if (document.getElementById("userInput").value != "undefined") {

     if (document.getElementById("userInput").value.toUpperCase() == "LUCKY100") {

         return true ;
     } else {
         return false ;
 }
 :