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
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
L = ['Adam', 'Lisa', 'Bart']
L[0],L[-1]=L[-1],L[0]
print L
L[0],L[-1]=L[-1],L[0]
print L
2019-04-09
L = ['Adam', 'Lisa', 'Bart']
L[0]='Bart'
L[-1]='Adam'
print L
L[0]='Bart'
L[-1]='Adam'
print L
2019-04-09
L = ['Adam', 'Lisa', 'Bart']
L.insert(-1,'Paul')
print L也是可以的,但是这个答案只有一个!!!!大家不要误解自己是错的了
!!!
L.insert(-1,'Paul')
print L也是可以的,但是这个答案只有一个!!!!大家不要误解自己是错的了
!!!
2019-04-09
#Enter a code
b=[45678+0x12fd2,'Learn Python in imooc',100<99,0xff==255]
for a in b:
print (a)
b=[45678+0x12fd2,'Learn Python in imooc',100<99,0xff==255]
for a in b:
print (a)
2019-04-09