最赞回答 / 杰5245212
<table border="1"><tr> <th>Name</th> <th>Score</th> </tr><tr> <td>Adam</td> <td>95</td> </tr><tr> <td>Lisa</td> <td>85</td> </tr><tr> &...
2019-07-09
最赞回答 / 悠着飞
输出的是字符串 你可以强制类型转换print [int(x+y+x) for x in '123456789' for y in '0123456789']
2019-07-09
最新回答 / SheepShake
你这个是死循环啊,怎么出结果,continue的意思是满足if条件的话就跳过continue下方的语句,重新开始循环,应该把x = x + 1 放到continue前吧<...code...>
2019-07-08
最赞回答 / 慕田峪9203819
列表表达式: [表达式 for 变量 in 列表 if 条件]你的写法不符合语法,for前少表达式,你可以这么写def toUppers(L): return [x.upper() for x in L if isinstance(x, str)]print (toUppers(['Hello', 'world', 101]))
2019-07-08