gpt4 book ai didi

python - 将字符串添加到字母python的末尾

转载 作者:太空宇宙 更新时间:2023-11-04 07:19:33 26 4
gpt4 key购买 nike

如何在 python 中执行以下操作;

for i in range(4):
s_i = 3

所以我明白了

s_0 = 3
s_1 = 3
s_2 = 3
s_3 = 3

最佳答案

Keep data out of your variable names.如果你想要编号的变量,你真的需要一个列表:

s = [3] * 4

然后您可以使用索引符号访问元素:

s[2] = 5

而不是尝试动态构建变量名。

如果你想要更通用的动态命名变量,比如名称来自用户输入的变量,你真的需要一个字典:

parents = {}
for i in xrange(5):
child = raw_input('Enter child name:')
parent = raw_input('Enter parent name:')
parents[child] = parent

关于python - 将字符串添加到字母python的末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25031385/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com