摘要: # -*- coding: utf-8 -*- """ Created on Mon Mar 4 23:35:19 2019 @author: fengs """ """ 测试题: 0. if not (money = 100: 1. assert 的作用是什么? 断言功能,断言条件为假,抛出异常,停止程序,给出错误信息 2. 假设有 x = 1,y = 2... 阅读全文
posted @ 2019-03-04 23:47 Alimy 阅读(553) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- """ Created on Mon Mar 4 23:18:54 2019 @author: fengs """ """ 测试题: 0. Python 的 floor 除法现在使用 “//” 实现,那 3.0 // 2.0 您目测会显示什么内容呢? 1.0 1. a 1000): print('在指定范围内,没... 阅读全文
posted @ 2019-03-04 23:35 Alimy 阅读(710) 评论(0) 推荐(1) 编辑
摘要: # -*- coding: utf-8 -*- """ Created on Mon Mar 4 23:05:51 2019 @author: fengs """ """ 0. 在 Python 中,int 表示整型,那你还记得 bool、float 和 str 分别表示什么吗? bool:布尔类型 float:浮点型 str:字符串类型 1. 你知道为什么... 阅读全文
posted @ 2019-03-04 23:18 Alimy 阅读(864) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- """ Created on Mon Mar 4 22:36:14 2019 @author: fengs """ """ 测试题: 0. 请问以下代码会打印多少次“我爱鱼C!” while 'C': print('我爱鱼C!') 一直打印 1.请问以下代码会打印多少次“我爱鱼C! i = 10 while i: prin... 阅读全文
posted @ 2019-03-04 23:05 Alimy 阅读(1759) 评论(2) 推荐(1) 编辑
摘要: # -*- coding: utf-8 -*- """ Created on Mon Mar 4 22:09:32 2019 @author: fengs """ """ 测试题: 0. 以下哪个变量的命名不正确?为什么? (A) MM_520 (B) _MM520_ (C) 520_MM (D) _520_MM C,标识符不能以数字开头 1. 在不上机的情况下,以下... 阅读全文
posted @ 2019-03-04 22:35 Alimy 阅读(678) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- """ Created on Mon Mar 4 11:19:54 2019 @author: Administrator """ """ 测试题: 0. 什么是BIF? 内置函数,已经写好的API,直接按规矩调用即可,不需要自己写的。... 阅读全文
posted @ 2019-03-04 22:18 Alimy 阅读(1038) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- """ Created on Mon Mar 4 10:49:42 2019 @author: Administrator """ """ 0. Python 是什么类型的语言? Python 是面向对象的脚本编程语言。 1. ID... 阅读全文
posted @ 2019-03-04 22:09 Alimy 阅读(904) 评论(0) 推荐(0) 编辑