Python
文章平均质量分 89
nameix
这个作者很懒,什么都没留下…
展开
-
Python每日一练---1.基本语法(导包,输入输出)
1.长整数(过长时以L结束)>>>234423234223243L2.变量名字母数字,下划线(不能以数字开头)3.注销 #4.打印print 2*2; print(2*2)字符串:print("hellopyhon")// print 'hellopython'5.输入x=input("x:") #默认标准表达式或者数字raw_input() #整行输入,字符原创 2017-01-09 15:01:32 · 627 阅读 · 0 评论 -
Python每日一练----2.基本数学函数
1.次幂>>>2**38>>>pow(2,3) #不用导包82.变量类型判断>>>x = raw_input()>>>type(x)3.四舍五入>>>round(1.0/2.0)1.04.绝对值>>>abs(-10)105. math.floor() #小于该数的最大值6.开根号>>>math.sqrt(3)>>>cmath.sqrt(-1)原创 2017-01-09 15:14:25 · 423 阅读 · 0 评论 -
Python每日一练--------元组+字典+列表
Python包含6中内建的序列,即列表、元组、字符串、Unicode字符串、buffer对象和xrange对象。通用序列操作:索引、分片、序列相加、乘法、成员资格、长度、最小值和最大值1.列表一个方括号内的逗号分隔值出现。列表的数据项不需要具有相同的类型list1 = ['physics', 'chemistry', 1997, 2000];list2原创 2017-01-10 15:10:30 · 1045 阅读 · 0 评论 -
Python每日一练------内置函数+内置变量+内置模块
1.内置函数Python所有的内置函数 Built-in Functions abs()divmod()input()open()staticmethod()all()enumerate()int()ord()str()原创 2017-01-11 14:29:47 · 9214 阅读 · 0 评论 -
Python每日一练--------异常处理
1.主程序入口if _name_=='_main_':2.原创 2017-01-11 20:44:51 · 413 阅读 · 0 评论