基本常识
ceil() 函数返回数字的上入整数。
其中isdigit()不能用来判断负数
Python isalnum() 方法检测字符串是否由字母和数字组成。
方法是使用strip()函数
Debug
- isdigit()不能判断负数
- terms of service.
Django Help: AttributeError: 'module' object has no attribute 'Charfield'
change 'Charfield' to 'CharField'
P.K.
①remove 是删除首个符合条件的元素。并不是删除特定的索引
②del 来说,它是根据索引(元素所在位置)来删除的
③pop返回的是你弹出的那个数值。
网友评论