我正在使用电子邮件 IMAP4,我得到了给定主题的电子邮件数量,如下所示,我也得到了它的类型。我的目标是获得它的大小或长度:
emailsUIDs = [b'80 83 84 85 86 87 88 89 90 91 93 126 136 137 138 139 140']
print(type(emailsUIDs )) # Prints --> type of Object = <class 'list'>
myLen = len((str(emailsUIDs ).replace("b'", "").replace("'", "")).split())
我试过 len(emailsUIDs) 但我只得到 1,有没有更好的方法来获得 emailsUIDs 的长度,而不必像我做的那样进行字符串操作
江户川乱折腾
相关分类