单项选择题
A.random.randint(99)B.random.randint(0,99)C.random.randint(1,100)D.random.randint(1,99)
获取列表长度语法结构:()A.len(Value)B.Value.lenghtC.Value.lenght()...
单项选择题获取列表长度语法结构:()
A.len(Value)B.Value.lenghtC.Value.lenght()D.lenght(Value)
下列方法用于列表添加对象的是下列哪个选项:()A.remove()方法B.insert()方法C.pop()方...
单项选择题下列方法用于列表添加对象的是下列哪个选项:()
A.remove()方法B.insert()方法C.pop()方法D.append()方法
ORM操作:条件查询多条数据的是()A.models.Book.objects.all()B.models.B...
单项选择题ORM操作:条件查询多条数据的是()
A.models.Book.objects.all()B.models.Book.objects.get(id=3)C.models.Book..objects.filter(book_name=’python’)D.models.Book.objects.create(full_name=’lsw’)