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

初识Python

廖雪峰 移动开发工程师
难度入门
时长 5小时 0分
学习人数
综合评分9.43
3762人评价 查看评价
9.7 内容实用
9.4 简洁易懂
9.2 逻辑清晰
score = 85

if score>=90:
print 'excellent'
elif score>=80:
print 'good'
elif score>=60:
print 'passed'
else:
print 'failed'
score = 55
if not score<60:
print 'passed'
else:
print 'failed'
score = 55
if score>=60:
print 'passed'
else:
print 'failed'
print 'hello,python'
print 'hello,','python'
print 45678+0x12fd2
print 'Learn Python in imooc'
print 100<99
print 0xff==255
L = [95.5,85,59]
for a in range(0,3,1):
print L[a]
s = 'Python was started in 1989 by "Guido".\nPython is free and easy to learn.'
1、要求2行,就用\n。
2、本质是一段话。所以用一对单引号或者双引号。因为Guido,用了双引号。所以用单引号。
3、\n 之后空格再接的下句话。所以结果没有对齐。不应该有空格
def greet(x=''):
print x and 'Hello,'+x+'.' or 'Hello,world.'

greet()
greet('Bart')
L = ['Adam', 'Lisa', 'Bart']
L[0],L[-1]=L[-1],L[0]
print L
L = ['Adam', 'Lisa', 'Bart']
L[0]='Bart'
L[-1]='Adam'
print L
L = ['Adam', 'Lisa', 'Bart']
L.insert(-1,'Paul')
print L也是可以的,但是这个答案只有一个!!!!大家不要误解自己是错的了
!!!
L = [95.5, 85, 59]
for a in range (-1,-4):
print (a)
L = [95.5,85,59]
for a in range(0,3):
print L[a]
#Enter a code
b=[45678+0x12fd2,'Learn Python in imooc',100<99,0xff==255]
for a in b:
print (a)
课程须知
如果您了解程序设计的基本概念,会简单使用命令行,了解中学数学函数的概念,那么对课程学习会有很大的帮助,让您学起来得心应手,快速进入Python世界。
老师告诉你能学到什么?
通过本课程的学习,您将学会搭建基本的Python开发环境,以函数为基础编写完整的Python代码,熟练掌握Python的基本数据类型以及list和dict的操作。

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消