質問編集履歴
2
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
2
|
|
3
|
+
Pythonで、以下のようなデータを入手しました。
|
4
|
+
(追記;youtube_transcript_api を使うと、text, time, durationの値が得られるのですが、そこのtextのみを取り出し、
|
5
|
+
text_dic = dict(zip(range(len(text)), text))
|
6
|
+
という形で辞書としています。それを簡略化し、見やすくしたものが{0: ---- }となります。)
|
3
|
-
|
7
|
+
'' と ”” の両方含まれています。
|
4
8
|
|
5
9
|
```ここに言語を入力
|
6
10
|
text_dic = {0: 'Why', 1: 'the same', 2: 'the storyline', 3: "When the final"}
|
1
文字修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
2
|
|
3
|
-
Pythonで、以下のようなデータを入手しました。''と””の両方含まれています。
|
3
|
+
Pythonで、以下のようなデータを入手しました。'' と ”” の両方含まれています。
|
4
4
|
|
5
5
|
```ここに言語を入力
|
6
6
|
text_dic = {0: 'Why', 1: 'the same', 2: 'the storyline', 3: "When the final"}
|