作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从一行中获取数组[a,b,c,d,e,f,g]
中的所有值并将其保存到Python 3中的另一个变量中
#This is the code I made and am getting the output "abcdefg" but am not sure
#how to store the output ,instead of printing it out.
array_value = [a,b,c,d,e,f,g]
for x in array_value:
print(x, end = '')
这可能是一个简单的问题,但我对 python 和一般编码都很陌生。
最佳答案
您可以使用str.join(iterable)
:
Return a string which is the concatenation of the strings in iterable. If there is any Unicode object in iterable, return a Unicode instead. A
TypeError
will be raised if there are any non-string or non Unicode object values in iterable. The separator between elements is the string providing this method.
以下应该可以解决问题:
array_value = ['a','b','c','d','e','f','g']
output_string = ''.join(array_value)
print(output_string)
>>> "abcdefg"
关于python - 如何在一行中从数组中获取值(Python 3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58247507/
我是一名优秀的程序员,十分优秀!