鱼C论坛

 找回密码
 立即注册
查看: 1372|回复: 7

[已解决]为什么错了

[复制链接]
发表于 2021-11-13 20:59:31 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
12行
ten_things = "Apples Oranges Crows Telephone Light Sugar"

print("Wait there are not 10 things in that list.Let's fix that.")

stuff = ten_things.split(' ')
more_stuff = ["Day", "Night", "Song", "Frisbee", "Corn", "Banana", "Gril", "Boy"]


for stuff in range(0,11):
    next_one = more_stuff.pop()
    print("Adding:", next_one)
    stuff.append(next_one)
    print(f"There are {len(stuff)} items now.")

print("There we go: ", stuff)

print("Let's do some things with stuff.")

print(stuff[1])
print(stuff[-1])# whoa! fancy
print(stuff.pop())
print(' '.join(stuff)) # what? cool!
print('#'.join(stuff[3:5])) # super stellar!
最佳答案
2021-11-13 21:09:26
问题出在第 5 行和第 9 行(到底你的 stuff 是列表还是元素?系统被你搞傻了)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-11-13 21:09:26 | 显示全部楼层    本楼为最佳答案   
问题出在第 5 行和第 9 行(到底你的 stuff 是列表还是元素?系统被你搞傻了)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-11-13 21:16:24 | 显示全部楼层
傻眼貓咪 发表于 2021-11-13 21:09
问题出在第 5 行和第 9 行(到底你的 stuff 是列表还是元素?系统被你搞傻了)

那我应该怎么改呢,我是想用for来输出这个列表,第五行不变的情况下应该怎么改正啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-11-13 21:21:29 | 显示全部楼层
华文杉 发表于 2021-11-13 21:16
那我应该怎么改呢,我是想用for来输出这个列表,第五行不变的情况下应该怎么改正啊

不明白,你希望输出的是?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-11-13 21:24:19 | 显示全部楼层
傻眼貓咪 发表于 2021-11-13 21:21
不明白,你希望输出的是?

Wait there are not 10 things in that list.Let's fix that.
Adding: Boy
There are 7 items now.
Adding: Gril
There are 8 items now.
Adding: Banana
There are 9 items now.
Adding: Corn
There are 10 items now.
There we go:  ['Apples', 'Oranges', 'Crows', 'Telephone', 'Light', 'Sugar', 'Boy', 'Gril', 'Banana', 'Corn']
Let's do some things with stuff.
Oranges
Corn
Corn
Apples Oranges Crows Telephone Light Sugar Boy Gril Banana
Telephone#Light
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-11-13 21:28:41 | 显示全部楼层
傻眼貓咪 发表于 2021-11-13 21:09
问题出在第 5 行和第 9 行(到底你的 stuff 是列表还是元素?系统被你搞傻了)

我感觉我又行了!
ten_things = "Apples Oranges Crows Telephone Light Sugar"

print("Wait there are not 10 things in that list.Let's fix that.")

stuff = ten_things.split(' ')
more_stuff = ["Day", "Night", "Song", "Frisbee", "Corn", "Banana", "Gril", "Boy"]
app = []
app != 10
for stuff in app:
    next_one = more_stuff.pop()
    print("Adding:", next_one)
    stuff.append(next_one)
    print(f"There are {len(stuff)} items now.")

print("There we go: ", stuff)

print("Let's do some things with stuff.")

print(stuff[1])
print(stuff[-1])# whoa! fancy
print(stuff.pop())
print(' '.join(stuff)) # what? cool!
print('#'.join(stuff[3:5])) # super stellar!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-11-13 21:29:11 | 显示全部楼层
傻眼貓咪 发表于 2021-11-13 21:21
不明白,你希望输出的是?

输出这个
Wait there are not 10 things in that list.Let's fix that.
There we go:  ['Apples', 'Oranges', 'Crows', 'Telephone', 'Light', 'Sugar']
Let's do some things with stuff.
Oranges
Sugar
Sugar
Apples Oranges Crows Telephone Light
Telephone#Light
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-11-13 21:34:27 | 显示全部楼层
华文杉 发表于 2021-11-13 21:24
Wait there are not 10 things in that list.Let's fix that.
Adding: Boy
There are 7 items now.

不知道是不是你要的代码:
arr = ['Apples', 'Oranges', 'Crows', 'Telephone', 'Light', 'Sugar']
adding = list(map(lambda x: x, input().split()))
arr += adding
print(*arr)
输出:
Apples Oranges Crows Telephone Light Sugar Boy Gril Banana
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 20:51

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表