程序功能: 1、启动程序后,让用户输入工资,然后打印商品列表 2、允许用户根据商品编号购买商品 3、用户选择商品后,检测余额是否够,够就直接扣款,不够就提醒 4、可随时退出,退出时,打印已购买商品和余额 your_salary = int(input("Please your salary:")) ...
分类:
其他好文 时间:
2019-12-07 10:48:03
阅读次数:
104
#_*_coding:utf-8_*_#作者:王佃元#日期:2019/12/6#格式化输出name = input("Name")age = input("Age")job = input("Job")salary = input("Salary")msg = ''' info of %s Name ...
分类:
其他好文 时间:
2019-12-07 01:09:00
阅读次数:
89
兼容性前缀: 谷歌:webkit 火狐:moz ie:ms 欧鹏:o选择器: 属性选择器: * = 包含 {href * = 'www'} ^ = 以什么开头 $ = 以什么结尾 伪类选择器: 第一个:first-of-type 最后一个:last-of-type 第几个:nth-of-type() ...
分类:
Web程序 时间:
2019-12-06 09:16:44
阅读次数:
793
TO_CHAR 是把日期或数字转换为字符串 TO_DATE 是把字符串转换为数据库中得日期类型转换函数TO_NUMBER 将字符转化为数字 TO_CHAR 使用TO_CHAR函数处理数字 TO_CHAR(number, '格式') TO_CHAR(salary,’$99,999.99’); 使用TO ...
```python f = lambda x, y: x * y def func(x,y): return x*y max/min/filter/map/sorted联用 salary_dict = { 'nick': 3000, 'jason': 100000, 'tank': 5000, 's... ...
分类:
其他好文 时间:
2019-11-22 19:19:57
阅读次数:
42
The Employee table holds all employees. Every employee has an Id, a salary, and there is also a column for the department Id. + + + + + | Id | Name | ...
分类:
其他好文 时间:
2019-11-21 14:22:33
阅读次数:
90
Write a SQL query to get the second highest salary from the Employee table. + + + | Id | Salary | + + + | 1 | 100 | | 2 | 200 | | 3 | 300 | + + + For ...
分类:
其他好文 时间:
2019-11-21 13:36:38
阅读次数:
59
.list ul li:nth-child(even){ ...} //li的偶数行样式 .list ul li:nth-child(odd){ ...} //li的奇数行样式 .list ul li:nth-child(1){ top:0;} //第一个li.list ul li:nth-chil ...
分类:
Web程序 时间:
2019-11-18 11:22:04
阅读次数:
655
Python格式化输出 1、%d是输出整数 ,%f小数,浮点数,%s 是字符2、要想用print语句连接字符串, 可以使用,end='' 的办法,其中在''里可以添加其它字符串")3、isdigit()方法的意思是判断salary变量长的像不像数字 "1234500" python print格式化 ...
分类:
其他好文 时间:
2019-11-17 17:24:51
阅读次数:
93
1 name = input("name:") 2 age = input("age:") 3 salary = input("salary:") 4 # 格式化输出的三种形式 5 msg1 = ''' 6 info of %s 7 name:%s 8 age:%s 9 salary:%s 10 ' ...
分类:
其他好文 时间:
2019-11-15 00:12:15
阅读次数:
72