回答編集履歴
1
追加
test
CHANGED
@@ -21,3 +21,57 @@
|
|
21
21
|
|
22
22
|
|
23
23
|
コードは簡単ですが、全て教えてしまうと勉強にならないので、自分でやってみて分からなければまた質問してください。
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
わからないということなので、サンプルを書いておきます。
|
28
|
+
|
29
|
+
これを元にして、考えてください。
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
```python
|
34
|
+
|
35
|
+
>>> def read_words(filename):
|
36
|
+
|
37
|
+
... with open(filename, 'r', encoding='utf_8') as file:
|
38
|
+
|
39
|
+
... words = [line.strip().split('\t') for line in file.readlines()]
|
40
|
+
|
41
|
+
... return words
|
42
|
+
|
43
|
+
...
|
44
|
+
|
45
|
+
>>> def select_word(words, letter):
|
46
|
+
|
47
|
+
... return [word for word in words if word[0].startswith(letter)]
|
48
|
+
|
49
|
+
...
|
50
|
+
|
51
|
+
>>> first_letter = 'b'
|
52
|
+
|
53
|
+
>>> all_words = read_words("文字列読込2ab.txt")
|
54
|
+
|
55
|
+
>>> selected_words = select_word(all_words, first_letter)
|
56
|
+
|
57
|
+
>>> print('selected_words:', selected_words)
|
58
|
+
|
59
|
+
selected_words: [['bedlam', '不穏な騒ぎ、混乱、気違いざた〔差別語〕', 'Stay away from their bedlam. あの人達に関わるな。'], ['behest', '(古)命令、依頼', 'at his behest 彼の命令・要請で']]
|
60
|
+
|
61
|
+
>>> print('selected_words[0]:', selected_words[0])
|
62
|
+
|
63
|
+
selected_words[0]: ['bedlam', '不穏な騒ぎ、混乱、気違いざた〔差別語〕', 'Stay away from their bedlam. あの人達に関わるな。']
|
64
|
+
|
65
|
+
>>> print('selected_words[0][0]:', selected_words[0][0])
|
66
|
+
|
67
|
+
selected_words[0][0]: bedlam
|
68
|
+
|
69
|
+
>>> print('selected_words[0][1]:', selected_words[0][1])
|
70
|
+
|
71
|
+
selected_words[0][1]: 不穏な騒ぎ、混乱、気違いざた〔差別語〕
|
72
|
+
|
73
|
+
>>> print('selected_words[0][2]:', selected_words[0][2])
|
74
|
+
|
75
|
+
selected_words[0][2]: Stay away from their bedlam. あの人達に関わるな。
|
76
|
+
|
77
|
+
```
|