print [100* n1 + 10*n2 + n3 for n1 in range(1,10)for n2 in range(0,10)for n3 in range(0,10)if n1 == n3]
2019-03-11
def toUppers(L):
return [X.upper() for X in L if type(X) == str]
print toUppers(['Hello', 'world', 101])
return [X.upper() for X in L if type(X) == str]
print toUppers(['Hello', 'world', 101])
最赞回答 / weixin_慕函数1471288
这个SET由3个TUPLE组成,可以用FOR循环遍历各成员,然后用条件语句判断Adam是否在其中一个TUPLE中。s = set([('Adam', 95), ('Lisa', 85), ('Bart', 59)])for s_member in s: if s_member[0]=='Adam': print "Adam:", s_memember[1]
2019-03-11
a = 'python'
print 'hello,', a or 'world'
b = ''
print 'hello,', b or 'world'
输出的结果用Python语言短路计算原则解释
print 'hello,', a or 'world'
b = ''
print 'hello,', b or 'world'
输出的结果用Python语言短路计算原则解释
2019-03-10
最赞回答 / 人间世支离疏
def toUppers2(L): LL=[] for i in L: if isinstance(i,str): LL.append(i) return LL按你的思路可以这样
2019-03-09