python错误TypeError:并非在字符串格式化期间转换所有参数

时间:2016-10-08 03:10:56

标签: python

一直在这主演太长时间,我想我错过了一些愚蠢的东西.. 编写脚本以将信息写入文件。所有变量都是从另一个函数传入的字符串,用于写入文件。

这是我的代码:

 53 def makeMainTF():
 54         NameTag,mcGroupTag,mcIPTag = makeNameMCTag()
 55         yourName = getAccessSecretName()
 56         instanceType ="t2.micro"
 57         with open ("vlslabMain.tf","w") as text_file:
 58                 text_file.writelines(['provider \"aws\" {\n',
 59                                       '  ',
 60                                         'access_key = \"${var.access_key}\"\n',
 61                                       '  ',
 62                                         'secret_key = \"${var.secret_key}\"\n',
 63                                       '  ',
 64                                         'region     = \"${var.access_key}\"\n',
 65                                       '}\n\n\n',
 66                                       'resource \"aws_instance\" \"example\" {\n',
 67                                         '  ',
 68                                       'ami = \"${lookup(var.amis, var.region)}\"\n',
 69                                         '  ',
 70                                         'instance_type = \"%s\" \n}' % instanceType,
 71                                         '\n\n\n\n',
 72                                         'tags {\n',
 73                                         '   ',
 74                                         'Name = \"%s\"\n' % NameTag,
 75                                         '   ',
 76                                         'Multicast = \"%s,%s\"' % (mcGroupTag,mcIPTag),
 77                                         '   ',
 78                                         'Owner = \"%s\"' % yourName,
 79                                         '\n}'])

我不确定为什么会收到此错误:

Enter Access Key: asd
Enter Secret Key: asd
Enter your name: asd
Access Key: asd
Secret Key: asd
Your full name is: asd
Traceback (most recent call last):
  File "terraTFgen.py", line 86, in <module>
    makeMainTF()
  File "terraTFgen.py", line 78, in makeMainTF
    'Owner = \"%s\"' % yourName,
TypeError: not all arguments converted during string formatting

也许我已经主演了太长时间,但我没有看到语法错误。

它实际上写出了

Enter Access Key: asd
Enter Secret Key: asd
Enter your name: asd
Access Key: asd
Secret Key: asd
Your full name is: asd

但错误导致脚本不写入实际文件。

感谢您的帮助! **** ***编辑

这是我用来获取yourName变量的函数

 3 def getAccessSecretName():
  4         access_key = raw_input("Enter Access Key: ")
  5         secret_key = raw_input("Enter Secret Key: ")
  6         yourName = raw_input("Enter your name: ")
  7         print "Access Key: %s" % access_key
  8         print "Secret Key: %s" % secret_key
  9         print "Your full name is: %s" % yourName
 10         return access_key, secret_key, yourName

1 个答案:

答案 0 :(得分:1)

用以下内容替换第78行并尝试 -

'Owner = \"%s\"' % " ".join(yourName),

实际上,你的名字似乎是一个元组 上面的代码会将其转换为字符串值。

编辑: - (回答OP的最后评论)

查看getAccessSecretName()函数的第10行 -

return access_key, secret_key, yourName

它返回 access_key,secret_key和yourName 元组

因此,如果您只想将yourName写入您的文件,

(选项1)

将函数getAccessSecretName()中的第55行替换为

access_key, secret_key, yourName = getAccessSecretName()

这样,您可以将三个值解压缩到不同的变量

并用以下内容替换第78行 -

'Owner = \"%s\"' % yourName

编辑2(选项II)

如果您只对yourName变量感兴趣,也可以这样做

之类的东西
yourName = getAccessSecretName()[2]

将第55行替换为上述行。在这里,您将把特定位置的元组值复制到变量yourName并忽略其他值。