python怎么填充_如何使⽤python⽤0填充列表-python
我想从另⼀个列表中获取固定长度的列表,例如:
a = ['a','b','c']
b = [0,0,0,0,0,0,0,0,0,0]
我想要⼀个像这样的列表:['a','b','c',0,0,0,0,0,0,0]。换句话说,如果是len(a) < len(b),我想⽤从列表a到列表b的长度的值填充列表b,这有点类似于 str.ljust 所做的事情。
这是我的代码:
a=['a','b','c']
b = [0 for i in range(5)]
b = [a[i] for i in b if a[i] else i]
print a
但是显⽰错误:
File "c.py", line 7
python怎么读取py文件b = [a[i] for i in b if a[i] else i]
^
SyntaxError: invalid syntax
我能做什么?
参考⽅案
为什么不只是:
a = a + [0]*(maxLen - len(a))
单⾏的'if'/'for'语句是否使⽤Python样式好? - python
我经常在这⾥看到某⼈的代码,看起来像是“单线”,这是⼀条单⾏语句,以传统的“if”语句或“for”循环的标准⽅式执⾏。我在Google周围搜索,⽆法真正到可以执⾏的搜索类型?任何⼈都可以提出建议并最好举⼀些例⼦吗?例如,我可以⼀⾏执⾏此操作
吗?example = "example" if "exam" in exam…在返回'Response'(Python)中传递多个参数 - python
我在Angular⼯作,正在使⽤Http请求和响应。是否可以在“响应”中发送多个参数。⾓度⽂件:
("api/agent/applicationaware").subscribe((data:any)... python⽂件:def get(request): ... return Response(seriali…Python exchangelib在⼦⽂件夹中读取邮件 - python
我想从Outlook邮箱的⼦⽂件夹中读取邮件。Inbox ├──myfolder 我可以使⽤account.inbox.all()阅读收件箱,但我想阅读myfolder中的邮件我尝试了此页⾯folder部分中的内容,但⽆法正确完成/pypi/exchangelib/ 参考⽅案 您需要⾸先掌握Folder的myfo…R'relaimpo'软件包的Python端⼝ - python
我需要计算Lindeman-Merenda-Gold(LMG)分数,以进⾏回归分析。我发现R语⾔的relaimpo包下有该⽂件。不幸的是,我对R没有任何经验。我检查了互联⽹,但不到。这个程序包有python端⼝吗?如果不存在,是否可以通过python使⽤该包? python参考⽅案 最近,我遇到了pingouin库。Python ThreadPoolExecutor抑制异常 - python
from concurrent.futures import ThreadPoolExecutor, wait, ALL_COMPLETED def div_zero(x): print('In div_zero') return x / 0 with ThreadPoolExecutor(max_workers=4) as execut…
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论