最赞回答 / 慕码人9380981
#看出问题来了 d.get()方法 只能得到value 不能得到keyd = { 'Adam': 95, 'Lisa': 85, 'Bart': 59}print 'Adam:',d.get('Adam')print 'Lisa:',d.get('Lisa')print 'Bart:',d.get('Bart')
2020-03-30
最赞回答 / weixin_慕用3030152
我来谈谈体会吧,网上看了很多,很受启发,结合自己的思考,把这个问题详尽解释一遍。现在假设我是计算机,我怎么来执行这一串代码?当n==1时,直接将a移动到c. 记为a->c.当n==2时,现实情况是需要b中转,移动方法为a->b,a->c,b->c.此时我(计算机)是怎么执行这串代码的呢?由于n==2,if内的语句不执行,现在执行的第一步是move(n-1, a, c, b),即为move(1, a, c, b),由于前面已经定义n==1的操作,即从第一位移动到第三位,此...
2020-03-30
L = ['Adam', 'Lisa', 'Paul', 'Bart']
L.pop(2)
L.pop(2)
print L
#python按顺序执行,执行完第二行语句后,Bart童鞋的索引号就变成2了,3是越界的 所以会报错
L.pop(2)
L.pop(2)
print L
#python按顺序执行,执行完第二行语句后,Bart童鞋的索引号就变成2了,3是越界的 所以会报错
2020-03-30
最新回答 / Fay_Gu
应该默认标准答案就是L.insert(2,'Paul'),虽然L.insert(-1,'Paul')也是正确的。仔细看输入L.insert(-1,'Paul')后的提示
2020-03-29
import math
def quadratic_equation(a, b, c):
t = math.sqrt(b * b - 4 * a *c)
return (-b + t)/(2 * a),(-b - t)/(2 * a)
print quadratic_equation(2, 3, 0)
print quadratic_equation(1, -6, 5)
def quadratic_equation(a, b, c):
t = math.sqrt(b * b - 4 * a *c)
return (-b + t)/(2 * a),(-b - t)/(2 * a)
print quadratic_equation(2, 3, 0)
print quadratic_equation(1, -6, 5)
2020-03-29
最赞回答 / 慕仔2176604
因为python的运算中如果有一个浮点数会把另外的值也自动转化成浮点数10/4 是int型运算,就是整数型运算,返回的值是210/4.0 是flost型运算,这是浮点数运算,返回的值是2.5
2020-03-28
E = [95,85,59]
print (E[0])
print (E[1])
print (E[2])
print (E[3])#使用索引时,千万注意不要越界
这是pycharm的输入方式
print (E[0])
print (E[1])
print (E[2])
print (E[3])#使用索引时,千万注意不要越界
这是pycharm的输入方式
2020-03-28