python的条件语句字符串内变量赋值的方法name=input("name:")age=int(input("age:"))job=input("job:")salary=input("salary:")info=‘‘‘----------infoof%s----------Name:%sAge:%dJob:%sSalary:%s‘‘‘%(name,name,age,job,salary)inf
分类:
编程语言 时间:
2019-06-13 15:47:29
阅读次数:
170
员工信息表 employee: user_id , name, store_id, salary 商店表stores:store_id, name,city 参考答案:select a.city from stores a,employee b where b.store_id=a.store_id ...
分类:
数据库 时间:
2019-06-05 18:11:09
阅读次数:
158
No. 19 Remove Nth Node From End of List (重点) Solution: 关键点是如何定位至倒数第n个节点。如下办法: 先从head (pre in code) 开始走至前第n+1个节点item (cur in code),这样子pre跟curm就相差n,再让pr ...
分类:
其他好文 时间:
2019-06-04 13:19:27
阅读次数:
102
Description Figure 1 shows a number triangle. Write a program that calculates the highest sum of numbers passed on a route that starts at the top and ...
分类:
其他好文 时间:
2019-06-01 19:44:46
阅读次数:
89
1 NX9+VS2012 2 3 4 #include <uf.h> 5 #include <uf_tabnot.h> 6 #include <NXOpen/Part.hxx> 7 #include <NXOpen/PartCollection.hxx> 8 #include <NXOpen/Ses ...
分类:
其他好文 时间:
2019-05-31 21:13:14
阅读次数:
121
1.IE6/7兼容伪类 _1.CSS部分:一个有冒号,一个是空格分隔。前者IE8+及其他现代浏览器;后者为IE6-7准备的 #test:before, #test before{ content: attr(data-content); width: 0; height: 0; } _2.HTML部 ...
分类:
其他好文 时间:
2019-05-29 18:20:11
阅读次数:
290
链表题没法在本地打断点调试真的烦。。。不过好在这题简单 注意考虑要去除的元素在正数第一位的情况就好。 Runtime: 40 ms, faster than 88.15% of Python3 online submissions forRemove Nth Node From End of Lis ...
分类:
其他好文 时间:
2019-05-27 23:28:15
阅读次数:
128
难度: 中等 leetcode地址: https://leetcode.com/problems/remove-nth-node-from-end-of-list/description/ 分析: 1. 这题解题思路也不难,两个指针fast, slow,fast先走n步,然后两个一起走,fast走到 ...
分类:
其他好文 时间:
2019-05-26 17:43:10
阅读次数:
89
__int64 CountOne(__int64 n) { __int64 count =0; if (n ==0) count =0; else if (n >1&& n <10) count =1; else { __int64 highest = n; __int64 bit =0; whil ...
分类:
其他好文 时间:
2019-05-19 10:14:01
阅读次数:
120
根据之前看过的知识点,以自己的思路先写出了一个程序,后续继续老师的操作再进行优化。 1 salary = int(input("请输入您的工资(单位 元):")) 2 3 print("以下是可购清单:") 4 5 shopping_list = ['','iphone','computer','b ...
分类:
其他好文 时间:
2019-05-16 12:26:01
阅读次数:
127