最新回答 / 慕的地0133975
在pycharm里写吧。还有没考虑判别式为负数的情况。
import math def quadratic_equation2(a, b, c): pan = b * b - 4 * a * c if pan &(-b= 0: x1 = (-b + math.sqrt(pan)) / 2 / a ...
2019-04-10
score = 85
if score>=90:
print 'excellent'
elif score>=80:
print 'good'
elif score>=60:
print 'passed'
else:
print 'failed'
if score>=90:
print 'excellent'
elif score>=80:
print 'good'
elif score>=60:
print 'passed'
else:
print 'failed'
2019-04-10
score = 55
if not score<60:
print 'passed'
else:
print 'failed'
if not score<60:
print 'passed'
else:
print 'failed'
2019-04-10
score = 55
if score>=60:
print 'passed'
else:
print 'failed'
if score>=60:
print 'passed'
else:
print 'failed'
2019-04-10
print 'hello,python'
print 'hello,','python'
print 'hello,','python'
2019-04-10
print 45678+0x12fd2
print 'Learn Python in imooc'
print 100<99
print 0xff==255
print 'Learn Python in imooc'
print 100<99
print 0xff==255
2019-04-10
已采纳回答 / qq_小雨飞飞_03329024
这道题主要是计算公差为3的等差数列的前100项求和根据求和公式需要,我们需要知道首项和尾项首项是x1=1 由题目给出尾项可以根据公式an=a1+(n-1)d 即尾项=首项+(n-1)倍的公差即 x100=x1+ 99*3最后根据求和公式 s=(首项+尾项)×项数/2 即s=(x1+x100)*n/2 得到输出
2019-04-10
最新回答 / 慕粉1728086137
原文:但是r'...'表示法不能表示多行字符串,也不能表示包含'和 "的字符串(为什么?)如果要表示多行字符串,可以用'''...'''表示
2019-04-10
s = 'Python was started in 1989 by "Guido".\nPython is free and easy to learn.'
1、要求2行,就用\n。
2、本质是一段话。所以用一对单引号或者双引号。因为Guido,用了双引号。所以用单引号。
3、\n 之后空格再接的下句话。所以结果没有对齐。不应该有空格
1、要求2行,就用\n。
2、本质是一段话。所以用一对单引号或者双引号。因为Guido,用了双引号。所以用单引号。
3、\n 之后空格再接的下句话。所以结果没有对齐。不应该有空格
2019-04-10
def greet(x=''):
print x and 'Hello,'+x+'.' or 'Hello,world.'
greet()
greet('Bart')
print x and 'Hello,'+x+'.' or 'Hello,world.'
greet()
greet('Bart')
2019-04-10