摘要:
1.练习1 写一个类,有个name属性,如果name赋值为非字符串,就不让放 urls.py from django.conf.urls import url from app01 import views urlpatterns = [ url(r'^index/',views.index), ] 阅读全文
摘要:
在JQuery中,我们可以使用链式调用,那么,我们如何通过python实现类似的功能呢? 具体代码如下: class MyJquery: def __init__(self,name): self.name = name @property def username(self): print('my 阅读全文