为了账号安全,请及时绑定邮箱和手机立即绑定

初识Python

廖雪峰 移动开发工程师
难度入门
时长 5小时 0分
学习人数
综合评分9.43
3762人评价 查看评价
9.7 内容实用
9.4 简洁易懂
9.2 逻辑清晰
'''t = ('Adam')
print t
因为()既可以表示元组(tuple),又可以作为括号表示运算时的优先级,结构('Adam')被Python解释器计算出结果1,导致我们得到的不是元组而是整数1
'''

t = ('Adam',)
print t
L = ['Adam', 'Lisa', 'Bart']
L[0] = Bart
L[-1] = Adam
print L
L = ['Adam', 'Lisa', 'Paul', 'Bart']
#L.pop(2)
#L.pop(3)
#print L
#因为先删除了Paul后 Bart就不是3了 就没有三了 正确如下
L.pop(2,3)
print L
L = ['Adam', 'Lisa', 'Bart']
L.append('Paul')
L.insert(-2,'Paul')
print L
print 2.5 + 10 / 4
#因为在Python里整数除以整数得到的还是整数,整数除以整数则会把小数部分省略
print 2.4 + 10.0/4
索引顺序发生了变化,应该先删后面的,再删前面的,或者改pop()中的索引位置
因为 a='python'是非空字符串,所以当计算a or 'world'时,a为true,则整个结果必定为true,所以print结果为hello,python;而b是空字符串,计算b or 'world'时,b为false,结果取决于'world',而'world'为true,所以print结果为hello,world。
因为10/4的结果是2,如果要让它得到5.0,那么式子应该是2.5+10.0/4
def average(*args):
x=sum(args)
n=x/2
return n

print average()
print average(1, 2)
print average(1, 2, 2, 3, 4)
print r'''"To be, or not to be": that is the question.
Whether it's nobler in the mind to suffer.'''
s = 'Python was started in 1989 by \"Guido\".\nPython is free and easy to learn.'
print s
x1 = 1
d = 3
n = 100
x100 = x1 + ( n - 1) * d
s = (x1 + x100) * n / 2
print s
#print 'hello'
#input code
print 'hello,python.'
print 'hello,','python.'
#Enter a code
print 45678 + 0x12fd2

print 'Learn Python in imooc'

print 100<99
print 0xff==255
课程须知
如果您了解程序设计的基本概念,会简单使用命令行,了解中学数学函数的概念,那么对课程学习会有很大的帮助,让您学起来得心应手,快速进入Python世界。
老师告诉你能学到什么?
通过本课程的学习,您将学会搭建基本的Python开发环境,以函数为基础编写完整的Python代码,熟练掌握Python的基本数据类型以及list和dict的操作。

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消