Commit
·
d94576d
1
Parent(s):
104f6f5
Trying a method to avoid deletion of first words during random sentence mode
Browse files
app.py
CHANGED
@@ -72,7 +72,7 @@ with tab1:
|
|
72 |
st.write("Polish:"+input_string_polish)
|
73 |
st.write('Output:'+output_string)
|
74 |
else:
|
75 |
-
st.write(output_string)
|
76 |
else:
|
77 |
st.warning("Please enter a string.")
|
78 |
|
@@ -96,7 +96,7 @@ with tab2:
|
|
96 |
st.write("Hungarian:"+input_string_hungarian)
|
97 |
st.write("Output:"+output_string)
|
98 |
else:
|
99 |
-
st.write(output_string)
|
100 |
else:
|
101 |
st.warning("Please enter a string.")
|
102 |
|
@@ -122,6 +122,6 @@ with tab3:
|
|
122 |
st.write("Turkish:"+input_string_turkish)
|
123 |
st.write('Output:'+output_string)
|
124 |
else:
|
125 |
-
st.write(output_string)
|
126 |
else:
|
127 |
st.warning("Please enter a string.")
|
|
|
72 |
st.write("Polish:"+input_string_polish)
|
73 |
st.write('Output:'+output_string)
|
74 |
else:
|
75 |
+
st.write('Output:'+output_string)
|
76 |
else:
|
77 |
st.warning("Please enter a string.")
|
78 |
|
|
|
96 |
st.write("Hungarian:"+input_string_hungarian)
|
97 |
st.write("Output:"+output_string)
|
98 |
else:
|
99 |
+
st.write('Output:'+output_string)
|
100 |
else:
|
101 |
st.warning("Please enter a string.")
|
102 |
|
|
|
122 |
st.write("Turkish:"+input_string_turkish)
|
123 |
st.write('Output:'+output_string)
|
124 |
else:
|
125 |
+
st.write('Output:'+output_string)
|
126 |
else:
|
127 |
st.warning("Please enter a string.")
|