编写题解 1213: 幸运儿(python代码)
摘要:解题思路:注意事项:参考代码:while True:
try:
n=int(input())
ls=list(range(1,n+1))
……
幸运儿-题解(Python代码)
摘要:我是用列表做的
```python
while True:
n=int(input())
lis=[] #新建列表盛放总数
for i in range(1,n+1)……