这里的可变对象、不可变对象指的是什么可变、什么不可变,字符串是不可变对象,但它支持replace函数修改啊!?
为什么在自动跳转下一个视频的时候会死机,电脑出现过好几次了,连任务管理器都切不出来,会不会是电脑的问题,大佬们有没有什么能解决这个问题的方法
为什么打印出来会有前面那么多,不是只有最后一行
老师,我这个程序中的子弹根本没有实际数组下标数那么多,而且子弹有一部分弹到边界外面去了,飞机有时候还会自爆,但是程序并没有报错,也没有异常,麻烦帮我看下是怎么回事。
PlaneGame.zip
我想请问一下现在这些课程还能运行吗为什么我的连sentinel依赖引入了,在配置文件中却没有发现提示
def put(self,key,val): '''添加数据''' # 判断是否需要扩容 if self.load_factor() > self.load_thres: # 扩容 pass
老师,这一步挺多余啊,即使需要扩容也已经在下面的extend函数扩容过了,这一步判断最终是pass,显得挺多余的
1.为什么又有P又有#text,rootP不是p标签元素节点吗,#text不是里面的子节点文本节点的nodeName吗
2. 为啥会在第一行多一个#text出来?视频里感觉是搪塞过去的。。
这个没看懂怎么把#text过滤掉的
请问老师,如果要删除约束,是只能在编辑表的图形化界面上操作吗?
试了一下,在 user_constraints表删除时,会提示没有权限。
怎么让这个代码实现继续循环,而不是只输出90呢?
(a=a%==a--){ System..print(a+)}
老师,这个怎么整呀,我把他改成阿里云的还是不行,老师能帮我远程看一下吗
class Student: def _init_(self, name, score): self.name = name self.score = score def say_score(self): print(self.name, self.score) s=Student('gao',22) s.say_score()
这哪里有问题,一直报错?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="./swiper-bundle.min.css"> <style> .swiper{ width: 600px; height: 300px; } </style> </head> <body> <div class="swiper"> <div class="swiper-wrapper"> <div class="swiper-slide">Slide 1</div> <div class="swiper-slide">Slide 2</div> <div class="swiper-slide">Slide 3</div> </div> <div class="swiper-pagination"></div> <div class="swiper-button-prev"></div> <div class="swiper-button-next"></div> </div> <script src="./swiper-bundle.min.js"></script> <script> var mySwiper=new Swiper(".swiper",{ loop:true, pagination:{ el:'.swiper-pagination', }, navigation:{ nextE1:'.swiper-button-next', prevE1:'.swiper-button-prev', }, }) </script> </body> </html>
老师,为啥我的swiper轮播图动不起来,点左右箭头没反应
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> *{ margin: 0; padding: 0; } body { background-color: gray; } .container { width: 1240px; margin: 0 auto; } /* .container ul {} */ .container ul li{ position: relative; float: left; list-style: none; margin-right: 9px; margin-top: 10px; width: 303px; height: 375px; background-color: white; } .container ul li:nth-child(4n) { margin-right: 0px; } .container ul li a { display: block; width: 100%; height: 100%; text-align: center; text-decoration: none; } .container ul li a img { width: 200px; margin-top: 30px; } .container ul li a .text { width: 100%; } .text .name { display: block; color: #333; font-size: 16px; margin-bottom: 2px; } .text .desc { display: block; color: #999; font-size: 14px; } .text .price i { font-style: normal; font-size: 14px; margin-bottom: 3px; } .text .price { display: inline-block; color: #c00; font-size: 22px; padding-left: 14px; } .text .price em { font-size: 16px; font-style: normal; } .product-sign { position: absolute; left: 30px; top: 30px; display: block; height: 60px; width: 60px; background-color: pink; border-radius: 50%; line-height: 60px; color: white; font-size: 16px; text-align: center } </style> </head> <body> <div class="container"> <ul> <li> <a href="#"> <img src="1.png" alt=""> <div class="text"> <span class="name">魅族 18s Pro</span> <span class="desc">限时至高特惠500 | 12期免息</span> <span class="price"><i>¥</i>3999<em>起</em></span> <div> <span class="product-sign">免息</span> </a> </li> <li> <a href="#"> <img src="1.png" alt=""> <div class="text"> <span class="name">魅族 18s Pro</span> <span class="desc">限时至高特惠500 | 12期免息</span> <span class="price"><i>¥</i>3999<em>起</em></span> <div> <span class="product-sign">免息</span> </a> </li> <li> <a href="#"> <img src="1.png" alt=""> <div class="text"> <span class="name">魅族 18s Pro</span> <span class="desc">限时至高特惠500 | 12期免息</span> <span class="price"><i>¥</i>3999<em>起</em></span> <div> <span class="product-sign">免息</span> </a> </li> <li> <a href="#"> <img src="1.png" alt=""> <div class="text"> <span class="name">魅族 18s Pro</span> <span class="desc">限时至高特惠500 | 12期免息</span> <span class="price"><i>¥</i>3999<em>起</em></span> <div> <span class="product-sign">免息</span> </a> </li> </ul> </div> </body> </html>
class="text"不是在大的div里面嘛,为什么在浏览器里面显示却不是在里面啊
老师 为啥把“软件”叫做“开发环境”呢?
非常抱歉给您带来不好的体验!为了更深入的了解您的学习情况以及遇到的问题,您可以直接拨打投诉热线:
我们将在第一时间处理好您的问题!
关于
课程分类
百战程序员微信公众号
百战程序员微信小程序
©2014-2025百战汇智(北京)科技有限公司 All Rights Reserved 北京亦庄经济开发区科创十四街 赛蒂国际工业园网站维护:百战汇智(北京)科技有限公司 京公网安备 11011402011233号 京ICP备18060230号-3 营业执照 经营许可证:京B2-20212637