使用 for 循环将输入列表转换为大写

发布于 2025-01-12 10:49:12 字数 180 浏览 0 评论 0原文

我试图以大写形式打印此输入列表,但我总是成为属性错误。我尝试了很多方法但仍然无法解决。有人可以帮助我吗?谢谢你,抱歉我的英语:))

x = [0,1,2,3,4,5,6,7,8,9]
for i in x:
    x[i] = input("Enter your name")
print(x)

im trying to print this input list in uppercase but i always become an attribute error. I tried many ways but i still can't solve it. could someone help me? Thank you and sorry for my english :))

x = [0,1,2,3,4,5,6,7,8,9]
for i in x:
    x[i] = input("Enter your name")
print(x)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一腔孤↑勇 2025-01-19 10:49:12

我不确定为什么您要创建一个具有定义值(所有整数)的数组,但立即将其替换为输入字符串。

只要这样做:

x = list()

for i in range(0, 10):
   input_name = input("Enter your name") 
   x.append(input_name.upper())

I'm not sure why you are creating an array with defined values (all integers), but immediately replace it with an input string.

Just do:

x = list()

for i in range(0, 10):
   input_name = input("Enter your name") 
   x.append(input_name.upper())
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文