question_id
int64
1.48k
42.8M
jpn_intent
stringlengths
3
188
snippet
stringlengths
2
232
16,772,071
Python で,辞書"data"で値によって分類されたキー値ペアのリストを取得します
sorted(list(data.items()), key=lambda x: x[1])
16,772,071
値による排列式 字thon
sorted(list(data.items()), key=lambda x: x[1])
5,110,352
現在の時間を表示する
now = datetime.datetime.now().strftime('%H:%M:%S')
1,883,980
Pythonで文字列のfoo bar bar の中文字列の"bar"の2度目の発生のインデックスを探す
"""foo bar bar bar""".replace('bar', 'XXX', 1).find('bar')
2,813,806
Python で"サイト"辞書で"スタックオーバーフロー"と"google"キーが表示されているかどうかを確認する
set(['stackoverflow', 'google']).issubset(sites)
10,037,742
Python の文字列" stuff" の文字列"と"を文字列"/"に置き換える
stuff.replace(' and ', '/')
22,712,292
Python で,アレイ"np"から tmpファイル"tmp"のインデックス 0,インデックス 1およびインデックス 8 に保存する
np.savez(tmp, *[getarray[0], getarray[1], getarray[8]])
14,043,934
引数 1時間10分
t = datetime.datetime.now() (t - datetime.timedelta(hours=1, minutes=10))
14,043,934
Pythonで時間オブジェクト"t"から1時間10分を引く
(t - datetime.timedelta(hours=1, minutes=10))
14,043,934
Pythonで時間オブジェクト"t"に1時間2分を追加する
dt = datetime.datetime.combine(datetime.date.today(), t)
14,043,934
Pythonで時間オブジェクト 'dt'から5時間を取り除きます
dt -= datetime.timedelta(hours=5)
3,059,301
"hex"コードを使用してコード文字列"データ"をエンコードする
print(data.encode('hex'))
3,059,301
Python で"データ"のデータ"の各六文字の十数値を返します
print(' '.join([str(ord(a)) for a in data]))
18,131,367
Pythonで,tupleの第2項が1である.
[x for x in l if x[1] == 1]
8,192,379
stdinから整数を含む数列 "a" を作成する
a.fromlist([int(val) for val in stdin.read().split()])
26,155,985
Pythonで文字列"ライン"に"\"を"非文字文字列"の前に置く
print(re.sub('[_%^$]', '\\\\\\g<0>', line))
2,755,950
テキストが値"some text"で始まるすべての"a"タグを取得する
doc.xpath("//a[starts-with(text(),'some text')]")
35,017,035
"a" のリストを,巣のリストから適切な要素のツープルリストに変換する
zip(*a)
34,696,853
文字列列列列列を"lst"に整数列に変換する
[map(int, sublist) for sublist in lst]
34,696,853
リストのリストの文字列を "lst" に ints に変換する
[[int(x) for x in sublist] for sublist in lst]
28,901,311
Python で別のアレイで発生するアレイの要素のインデックスを取得します
np.where(np.in1d(A, B))[0]
1,780,174
Python で,キー1 とキー2 が参照するリストの各値に対応する値とキー1 とキー2 がキー1 とキー2 のキー1 とキー2 に一致する値が含まれる単語の一覧を作成する
[{'key1': a, 'key2': b} for a, b in zip(d['key1'], d['key2'])]
1,780,174
リストの辞書を辞書リストに分割する
map(dict, zip(*[[(k, v) for v in value] for k, value in list(d.items())]))
42,950
2002年の最初の月の最後の日
calendar.monthrange(2002, 1)
42,950
2002年の2月の最後の日
calendar.monthrange(2008, 2)
42,950
2100年の2月の最後の日
calendar.monthrange(2100, 2)
42,950
Python で"月"の最後の日"を"年"で"月"に
calendar.monthrange(year, month)[1]
42,950
2012年の2月の最後の日
monthrange(2012, 2)
42,950
2000年の最初の月の最後の日
(datetime.date(2000, 2, 1) - datetime.timedelta(days=1))
89,228
Python で外部コマンド "ls -l" を呼び出す
from subprocess import call
89,228
Python で,外部コマンドを 'some_command with args' に呼び出す
os.system('some_command with args')
89,228
Pythonで,外部コマンドを呼び出す
os.system('some_command < input_file | another_command > output_file')
89,228
Python で,外部コマンドを 'some_command with args' に呼び出す
stream = os.popen('some_command with args')
89,228
Python で外部コマンドを "echo hello world" と呼び出す
print(subprocess.Popen('echo Hello World', shell=True, stdout=subprocess.PIPE).stdout.read())
89,228
Python で外部コマンドを "echo hello world" と呼び出す
print(os.popen('echo Hello World').read())
89,228
Python で外部コマンドを "echo hello world" と呼び出す
return_code = subprocess.call('echo Hello World', shell=True)
89,228
Python で外部コマンド 'ls' を呼び出す
p = subprocess.Popen('ls', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) for line in p.stdout.readlines(): print(line, end=' ') retval = p.wait()
89,228
Python で外部コマンド "ls -l" を呼び出す
call(['ls', '-l'])
16,566,069
url を utf8 で解読し,プリントする
print(urllib.parse.unquote(url).decode('utf8'))
16,566,069
Python で urllib の逃げた url 文字列 'url' を 'utf8' で解読する
url = urllib.parse.unquote(url).decode('utf8')
14,750,675
Pythonで文字列"12454v"から文字を削除する
"""""".join(filter(str.isdigit, '12454v'))
25,292,838
パンダでベクトリ化された文字列操作を使用して列"季節"の行値を更新する
df['Season'].str.split('-').str[0].astype(int)
8,459,231
ツープル内の第2パラメータで"my_list"のツープルリストを整理する
my_list.sort(key=lambda x: x[1])
4,664,850
Python で,文字列 "ttt" の中にあるサブ文字列 "tt" のすべての発生のインデックスを見つけます
[m.start() for m in re.finditer('(?=tt)', 'ttt')]
4,664,850
文字列のサブ文字列のすべての発生を検索
[m.start() for m in re.finditer('test', 'test test test test')]
35,005,907
白い空間に基づく分割文字列"s"
re.findall('\\s+|\\S+', s)
18,071,222
Python で,データフレーム"rdata"のインデックスとして"['race_date', 'track_code', 'race_number']"の列を設定する
rdata.set_index(['race_date', 'track_code', 'race_number'])
13,571,134
Python で,rootdir ですべてのサブディレクトリやファイルを繰り返し閲覧する
for (root, subFolders, files) in os.walk(rootdir): pass
652,291
辞書値のリストを逆順で"日付"で整理する
list.sort(key=lambda item: item['date'], reverse=True)
24,076,297
Python で,文字列 "aaabbbccc" の最初の5文字を表示する
"""{:.5}""".format('aaabbbccc')
14,961,562
整数値リストに"s"の六位数文字列を解き放す
struct.unpack('11B', s)
176,918
リスト"['foo', 'bar', 'baz']"に記載された"foo"項目のインデックスを見つける
[i for i, j in enumerate(['foo', 'bar', 'baz']) if j == 'foo']
104,420
Python で,リスト "[1, 2, 3]" とリスト "[4, 5, 6]" のすべての変数を生成する
print(list(itertools.product([1, 2, 3], [4, 5, 6])))
104,420
Python でリストのすべての変数"[1, 2, 3]"を生成する
itertools.permutations([1, 2, 3])
11,066,400
単コードレジェックスパターンの代替発生 u'\\p{p}+'は,文字列 'text', Python で空文字列 '' で
return re.sub('\\p{P}+', '', text)
2,052,390
Python で,非常に特定の悪いことが起こった"というメッセージで"値エラー"例外を手動で投げ/上げます
raise ValueError('A very specific bad thing happened')
2,052,390
Python で"I Know Python!"を例外にします
raise Exception('I know Python!')
2,052,390
パイthon で"I know python!"を手動で投げます
raise Exception('I know python!')
2,052,390
Python で"隠れたバグを表している,これを捕まえない"というメッセージで値エラーを投げます
raise ValueError('represents a hidden bug, do not catch this')
2,052,390
Python で"これはあなたが処理する予定の例外"というメッセージで例外を投げます
raise Exception('This is the exception you expect to handle')
2,052,390
Python で"非常に特定の悪いことが起こった"メッセージで値エラーを投げます
raise ValueError('A very specific bad thing happened')
2,052,390
Python で"特定メッセージ"メッセージで実行時のエラーを投げます
raise RuntimeError('specific message')
2,052,390
"距離"の予想外の値"とメッセージで断言エラーを投げます.
raise AssertionError("Unexpected value of 'distance'!", distance)
7,732,125
セルニウムテキストエリア要素"foo"が空っぽでない場合は,フィールドをクリアする
driver.find_element_by_id('foo').clear()
7,732,125
セレーンを含むテキストエリア"foo"から明晰なテキスト
driver.find_element_by_id('foo').clear()
9,590,965
番号2130706433を ip 文字列に変換する
socket.inet_ntoa(struct.pack('!L', 2130706433))
12,329,853
パイthon で,指定的順序 "x", "y", "a", "b", "x", "y" のパンドデータフレーム "df" の列を再編する
df = df[['x', 'y', 'a', 'b']]
19,205,916
ベースクラスから"childclass"に呼び出す __init__方法,Python
super(ChildClass, self).__init__(*args, **kwargs)
4,880,960
Python で,pYthon dict 'd' のすべての値の合計
sum(d.values())
4,880,960
Python ディクトのすべての値の合計
sum(d.values())
14,661,051
python の辞書 'your_data' を json アレイ に変換する
json.dumps(your_data, ensure_ascii=False)
23,638,638
Pythonで 0 から 100 の範囲の浮遊列を変数"値"に割り当てる
values = np.array([i for i in range(100)], dtype=np.float64)
35,078,261
Pythonで"順"で値によって"list_of_dct"辞書のリストを整理する
sorted(list_of_dct, key=lambda x: order.index(list(x.values())[0]))
4,223,923
Pythonで文字列 "s" の最初の文字のケースを変更する
return s[0].upper() + s[1:]
2,597,932
番号列の列に"[1,2,3,4]"を添付する.
"""""".join([1, 2, 3, 4])
26,541,968
Pythonで文字列の"ライン"から"utf-8"でない文字をすべて削除する
line = line.decode('utf-8', 'ignore').encode('utf-8')
33,065,588
パイthon スクリプトから端末でコマンドを実行する
os.system(command)
775,296
Mysql は Python で,param1 とparam2 のパラメータで,bar = %s と baz = %s の foo から * を選択する
c.execute('SELECT * FROM foo WHERE bar = %s AND baz = %s', (param1, param2))
5,868,374
Python で,format pattern '%y-%m-%d'を使用して,datetimeオブジェクトに"datestr"文字列を解析する
dateobj = datetime.datetime.strptime(datestr, '%Y-%m-%d').date()