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

初识Python

廖雪峰 移动开发工程师
难度入门
时长 5小时 0分
学习人数
综合评分9.43
3762人评价 查看评价
9.7 内容实用
9.4 简洁易懂
9.2 逻辑清晰
def s(x1, d, n):
i = 0
sum = 0
while i < n:
sum = sum + x1
x1 += d
i += 1
print sum
s(1, 3, 100)
x = int(input("请输入x 坐标"))
y = int(input("请输入y 坐标"))
if(x==0 and y==0):
print("原点")
elif(x==0):
print("y 轴")
elif(y==0):
print("x 轴")
elif(x>0 and y>0):
print("第一象限")
elif(x<0 and y>0):
print("第二象限")
elif(x<0 and y<0):
print("第三象限")
else:
print("第四象限")
print r'''"To be,or not to be":that is the question.
Whether it's nobler in the mind to suffer.'''
怎么输入路径都不对,怎么办
cao,看了一下午.把两层的弄懂了,去看3层的,迷了,拐回来看2层的,又看不懂了
x=1
x=x*100+100*(100-1)/2*3#等差数列公式
print x
def move(n, a, b, c):
if n==1:
print a,'-->',c
return
print a,b,c,n,'------\n'
move(n-1,a,c,b)
print a,b,c,n,'++++++'
print a,'-->',c
print a,b,c,n,',,,,,,,'
move(n-1,b,a,c)
print a,b,c,n+3,'1111111111111\n'
move(4, 'A', 'B', 'C')

逻辑结构查看方式
L = [75, 92, 59, 68]
sum = 0.0
for score in L:
sum = sum + score
aver = sum/len(L)
print aver
这个IDE有毒。。。本地完全没问题的一段码:for k,v in d.items(): print k+':'+str(v) 到了这里就不通过了。。。也是无语
L = ['Adam', 'Lisa', 'Bart', 'Paul']
for index, name in zip(range(1,len(L)+1),L):
print index, '-', name
正确答案
print "I'm python"
print '"fool boy"'
print 'Learning "Python" is cool'
#it's error .
#print 'Bob said "I'm OK"'
print 'Bob said "I\'m OK".'
print 'Bob said \"I\'m OK\".'
#the result
I'm python
"fool boy"
Learning "Python" is cool
Bob said "I'm OK".
Bob said "I'm OK".
L=[]
for i in range(1,101):
L.append(i*i)
print sum(L)
def firstCharUpper(s):
return s.upper()[:1]+s[1:]

print firstCharUpper('hello')
print firstCharUpper('sunday')
print firstCharUpper('september')
感觉s[0].upper和s.upper()[:1]一样的,我这种麻烦点
如例子‘Bob said \"I\'m OK\”.’中,Ok后面的\he said后面的\去掉打印出来的效果是一样的,I后面的那个\是必须的。那什么时候才需要加\呢?
s = 'Python was started in 1989 by "Guido".\nPython is free and easy to learn.'
print s
课程须知
如果您了解程序设计的基本概念,会简单使用命令行,了解中学数学函数的概念,那么对课程学习会有很大的帮助,让您学起来得心应手,快速进入Python世界。
老师告诉你能学到什么?
通过本课程的学习,您将学会搭建基本的Python开发环境,以函数为基础编写完整的Python代码,熟练掌握Python的基本数据类型以及list和dict的操作。

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消