修改打印输出

时间:2019-06-07 06:35:32

标签: python

我正在打印一本词典,里面有联系电子邮件。但是字典中的值带有“。” “点”和“ @”为“ at”。我想对此进行修改,以便在输出中获得适当的联系方式

dict = bucket['TagSet'][3]
print("  Contact Email: " + dict['Value'])

输出:

Contact Email: vwarikoo at aquent dot com

结果应为vwariko@aquent.com

1 个答案:

答案 0 :(得分:0)

print_str = str(dict['Value']).replace(" at ", "@").replace(" dot ", ".")
print(print_str)