Update app.py
Browse files
app.py
CHANGED
@@ -129,4 +129,37 @@ def define(word):
|
|
129 |
|
130 |
for word in clue_result7:
|
131 |
content = define(word)
|
132 |
-
st.write(content)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
for word in clue_result7:
|
131 |
content = define(word)
|
132 |
+
st.write(content)
|
133 |
+
|
134 |
+
|
135 |
+
st.markdown("### Vowel Frequencies:")
|
136 |
+
st.markdown("Letter|Percent|Proportion in Words")
|
137 |
+
st.markdown("E| 11.1607%| 56.88")
|
138 |
+
st.markdown("A 8.4966% 43.31 ")
|
139 |
+
st.markdown("I 7.5448% 38.45 ")
|
140 |
+
st.markdown("O 7.1635% 36.51 ")
|
141 |
+
st.markdown("U 3.6308% 18.51 ")
|
142 |
+
st.markdown("Y 1.7779% 9.06")
|
143 |
+
|
144 |
+
st.markdown("Consonants:")
|
145 |
+
st.markdown("M 3.0129% 15.36")
|
146 |
+
st.markdown("H 3.0034% 15.31")
|
147 |
+
st.markdown("R 7.5809% 38.64 ")
|
148 |
+
st.markdown("G 2.4705% 12.59")
|
149 |
+
st.markdown("B 2.0720% 10.56")
|
150 |
+
st.markdown("F 1.8121% 9.24")
|
151 |
+
st.markdown("T 6.9509% 35.43 ")
|
152 |
+
st.markdown("N 6.6544% 33.92 ")
|
153 |
+
st.markdown("W 1.2899% 6.57")
|
154 |
+
st.markdown("S 5.7351% 29.23 ")
|
155 |
+
st.markdown("K 1.1016% 5.61")
|
156 |
+
st.markdown("L 5.4893% 27.98 ")
|
157 |
+
st.markdown("V 1.0074% 5.13")
|
158 |
+
st.markdown("C 4.5388% 23.13 ")
|
159 |
+
st.markdown("X 0.2902% 1.48")
|
160 |
+
st.markdown("Z 0.2722% 1.39")
|
161 |
+
st.markdown("D 3.3844% 17.25 ")
|
162 |
+
st.markdown("J 0.1965% 1.00")
|
163 |
+
st.markdown("P 3.1671% 16.14 ")
|
164 |
+
st.markdown("Q 0.1962% (1)
|
165 |
+
")
|