编程语言 python
cool010
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
如何在Idel中显示中日韩文
1.打开python安装目录\idellib\IOBinding.py文件 2.找到底35行 插入一行如下: [code="python"]encoding = "ascii" # line 35 if sys.platform == 'win32': # On Windows, we could use "mbcs". However, to give the user # a por...原创 2013-08-17 18:32:33 · 318 阅读 · 0 评论 -
两个Python练习题
1.假设校园电费是0.6元/千瓦时,输入这个月使用了多少千瓦时的点,算出你要交的电费 。假如你只有1元和1毛的硬币,请问各需要多少1元和1毛的硬币。 输入输出: 输入这个月使用的电量:11 电费:6.6 共需6张1元和6张1毛 [code="python"]def main(): pq = input('please input the power quantity:')...原创 2013-08-17 19:03:03 · 590 阅读 · 0 评论
分享