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

初识Python

廖雪峰 移动开发工程师
难度入门
时长 5小时 0分
学习人数
综合评分9.43
3762人评价 查看评价
9.7 内容实用
9.4 简洁易懂
9.2 逻辑清晰
挺好的,丹臣
sum = 0
x = 1
n = 1
while True:
sum = sum+ x
x=x*2
n = n+1
if n>20:
break
print (sum)
python里面元素设有互换,比如 L[0],L[-1] = L[-1],L[0],就可以了
L = ['Adam', 'Lisa', 'Paul', 'Bart']
L.pop(-1)
L.pop(-1)
print L
for x in range(1,10):
for y in range(1,10):
if x<y:
print x*10+y
# -*- coding: utf-8 -*-

print '''静夜思
床前明月光,
疑是地上霜。
举头望明月,
低头思故乡。'''
print r'''"To be, or not to be": that is the question.
whether it's nobler in the mind to suffer.'''
在3.3以上版本加括号
print(r'''"To be, or not to be": that is the question.
whether it's nobler in the mind to suffer.''')
def average(*args):
sum=0.0
if len(args)==0:
return sum
for x in args:
sum+=x
return sum/len(args)

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.\nWhether it's nobler in the mind to suffer.'''
dict就是通过 key 来查找 value。
如果现在是在上高中,还能理解,不过现在大学毕业了。。。我哭
x1 = 1
d = 3
n = 100
x100 = x1 +(n-1)*d
s = (x100+x1)*n / 2
print(s)
多行注释用三个单引号 ''' 或者三个双引号 """ 将注释括起来

'''
这是多行注释,用三个单引号
这是多行注释,用三个单引号
这是多行注释,用三个单引号
'''
print("Hello, World!")
L = ['Adam', 'Lisa', 'Bart', 'Paul']
M = []
for x in L:
y = x.lower()
M.append(y)
s = set(M+L)
print('adam' in s)
print('bart' in s)
print('Bart' in s)
s = "Python was started in 1989 by \"Guido\".\n Python is free and easy to learn."
print s
课程须知
如果您了解程序设计的基本概念,会简单使用命令行,了解中学数学函数的概念,那么对课程学习会有很大的帮助,让您学起来得心应手,快速进入Python世界。
老师告诉你能学到什么?
通过本课程的学习,您将学会搭建基本的Python开发环境,以函数为基础编写完整的Python代码,熟练掌握Python的基本数据类型以及list和dict的操作。

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消