We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67fbc2e commit 7524cfeCopy full SHA for 7524cfe
ActivitySet#1/problem#07.py
@@ -1,3 +1,11 @@
1
# Strings
2
3
+# text = "X-DSPAM-Confidence: 0.8475"
4
+
5
text = "X-DSPAM-Confidence: 0.8475"
6
+pos = text.find(':')
7
+num =text[pos+1::]
8
+fnum=float(num)
9
+print(fnum)
10
11
0 commit comments