本文介绍了我想将元组更改为字符串而不将其加入 python.我怎么能那样做?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

例如:我想改变t=('a', 'b', 'c')到s='a', 'b', 'c'

For Example:I want to changet=('a', 'b', 'c')tos='a', 'b', 'c'

推荐答案

  t = ('a', 'b', 'c')
  s = 'a','b', 'c'
  print(s==t)
  # output True

如果你想要 s = 'a,b,c' 那么你可以通过加入你不想做的来做到这一点.此外,将 'a','b','c' 写成字符串是没有用的,但是您可以通过使用注释代码来做到这一点.请考虑写s = a,b,c

if you want s = 'a,b,c' then you can do it by joining which you do not want to do. Also, it's useless to write 'a','b','c' as string, however you can do that by using commented code. Please consider writing s = a,b,c

s = ''
for i in t:
    s += str(',') + i          # s += str(',') + str("'") + i + str("'")
s = s[1:]

这篇关于我想将元组更改为字符串而不将其加入 python.我怎么能那样做?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 14:34