我尝试从此链接https://github.com/abhishekchhibber/Gmail-Api-through-Python
使用Python使用gmail阅读器,现在我想从特定数据中读取每封电子邮件。
例如这样的例子:
Name : John Doe
Address : Las Vegas
City : New York
我只希望打印输出为City : New York
..该如何解决?
谢谢!
答案 0 :(得分:0)
正如在Github存储库中提到的那样,输出将是这样的字典。
output = {
'Name' : 'John Doe',
'Address' : 'Las Vegas',
'City' : 'New York'
}
现在,您只需要打印出想要的内容,例如:
print("City: " + output.get("City"))
output.get("City")
将返回键City
的值。