assignment 6.5 python for everybody code example
Example: assignment 6.5 python for everybody
text = "X-DSPAM-Confidence: 0.8475";
a= text.find(':')
b= text.find('5')
c= text[a+1:b+1]
d= float(c.lstrip())
print(d)
text = "X-DSPAM-Confidence: 0.8475";
a= text.find(':')
b= text.find('5')
c= text[a+1:b+1]
d= float(c.lstrip())
print(d)