Problem UVA225-Golygons Accept:307 Submit:3646 Time Limit: 3000 mSec Problem Description Imagine a country whose cities have all their streets laid ou ...
分类:
其他好文 时间:
2018-09-01 22:05:18
阅读次数:
144
ACM ICPC 2018 南京赛区网络预赛 Magical Girl Haze 最短路 [TOC] 题面 There are N cities in the country, and M directional roads from uu to v(1$\le$ u, v$\le$ n)v(1≤u ...
分类:
其他好文 时间:
2018-09-01 22:04:53
阅读次数:
152
Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 16957 Accepted: 5896 Description Windy has a country, and he wants to build an army to prot ...
分类:
其他好文 时间:
2018-08-31 13:14:29
阅读次数:
113
子表创建数据 从主表取出子表的数据 1.view中取出 跟related_name有关系: https://www.cnblogs.com/iiiiiher/p/9542094.html 2.模板中取出 https://docs.djangoproject.com/zh hans/2.1/intro ...
分类:
其他好文 时间:
2018-08-30 15:45:25
阅读次数:
311
一. 类的成员共分为三类: 字段, 方法, 属性 一. 字段: 静态字段, 普通字段 通过类创建对象时,如果每个对象都具有相同的字段,那么就使用静态字段 静态字段访问方法 静态字段属于类, 静态字段通过类访问, 静态字段在内存中只保存一份 print(Foo.country) 普通字段访问方法 普通 ...
分类:
其他好文 时间:
2018-08-28 21:15:56
阅读次数:
117
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6447 Problem DescriptionYJJ is a salesman who has traveled through western country. YJJ is always on jo ...
分类:
编程语言 时间:
2018-08-27 01:00:02
阅读次数:
146
1.如下表格,查询2017年Q1季度的从a_country发往其他城市的货量最高的公司,并输出货量总和 2.条件同1,同时查询公司b ...
分类:
数据库 时间:
2018-08-25 16:33:11
阅读次数:
541
Problem UVA12188-Inspector's Dilemma Time Limit: 3000 mSec Problem Description In a country, there are a number of cities. Each pair of city is connec ...
分类:
其他好文 时间:
2018-08-25 14:33:16
阅读次数:
207
一.反射 1.定义:指的是通过字符串来操作类或者对象的属性 2.为什么用反射? 减少冗余代码,提升代码质量。 3.如何用反射? class People: country='China' def __init__(self,name): self.name=name obj=People('jame ...
分类:
编程语言 时间:
2018-08-24 11:47:55
阅读次数:
168
在数据库原有的字段(列)中创建新的字段。 计算字段是运行时在SELECT语句内创建的。 拼接字段 vendors表中存在字段vend_name, vend_country,现在需要创建二者的组合字段vend_name(vend_country) ,并将其命名为vend_title mysql> SE ...
分类:
数据库 时间:
2018-08-23 20:59:22
阅读次数:
207