6.5 Write code using find() and string slicing (see section 6.10) to extract the number at the end of the line below. Convert the extracted value to a floating point number and print it out.
Solution:
text = "X-DSPAM-Confidence: 0.8475" pos = text.find('0') word = (text[pos:pos+6]) fword = float(word) print(fword)
¿Quiéres el ejercicio resuelto en menos de 48 horas? Paga desde $US 4 (4 DÓLARES) vía PayPal o desde $ 10.000 pesos (colombianos) vía Nequi si estás en Colombia, comunicándote al whatsapp +573203806207 para confirmar pago, y tendrás el ejercicio resuelto.
3 comentarios en “Exercise 6.5 Python For Everybody”