Questions tagged «word»



11
Android自动换行EditText文本
我一直在尝试使我的EditText框自动换行,但似乎无法做到这一点。 在开发Android应用程序时,我已经处理了更为复杂的问题,这似乎应该是一个简单的过程。 但是,问题仍然存在,并且我有一个大的文本框,该文本框仅允许我在一行上输入文本,一直跨过,在输入文本时水平滚动。 这是我的布局文件中EditText对象的XML代码。 <?xml version="1.0" encoding="utf-8"?> <LinearLayout android:id="@+id/myWidget48" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android" > <ScrollView android:id="@+id/myScrollView" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" > <LinearLayout android:id="@+id/widget37" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" > <EditText android:id="@+id/txtNotes" android:layout_width="300px" android:layout_height="120px" android:scrollbars="vertical" android:textSize="18sp" android:gravity="left" android:layout_marginTop="10dip" android:inputType="textCapSentences" > </EditText> </LinearLayout> </ScrollView> </LinearLayout>

12
计算列表中单词的频率并按频率排序
我正在使用Python 3.3 我需要创建两个列表,一个用于唯一词,另一个用于词频。 我必须根据频率列表对唯一单词列表进行排序,以使频率最高的单词在列表中排在首位。 我有文本设计,但是不确定如何在Python中实现它。 到目前为止,我发现的方法都使用了Counter我们还没有学过的词典。我已经从包含所有单词的文件中创建了列表,但是不知道如何找到列表中每个单词的频率。我知道我需要循环才能执行此操作,但无法弄清楚。 这是基本设计: original list = ["the", "car",....] newlst = [] frequency = [] for word in the original list if word not in newlst: newlst.append(word) set frequency = 1 else increase the frequency sort newlst based on frequency list
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.