idx
int64
0
2.38k
question
stringlengths
5
184
target
stringlengths
5
213
0
Concatenate elements of a list 'x' of multiple integers to a single integer
sum ( d * 10 ** i for i , d in enumerate ( x [ : : - 1 ] ) )
1
convert a list of integers into a single integer
r = int ( '' . join ( map ( str , x ) ) )
2
convert a DateTime string back to a DateTime object of format '%Y-%m-%d %H:%M:%S.%f'
datetime . strptime ( '2010-11-13 10:33:54.227806' , '%Y-%m-%d %H:%M:%S.%f' )
3
get the average of a list values for each key in dictionary `d`)
[ ( i , sum ( j ) / len ( j ) ) for i , j in list ( d . items ( ) ) ]
4
zip two lists `[1, 2]` and `[3, 4]` into a list of two tuples containing elements at the same index in each list
zip ( [ 1 , 2 ] , [ 3 , 4 ] )
5
prepend string 'hello' to all items in list 'a'
[ 'hello{0}' . format ( i ) for i in a ]
6
regex for repeating words in a string `s`
re . sub ( '(?<!\\S)((\\S+)(?:\\s+\\2))(?:\\s+\\2)+(?!\\S)' , '\\1' , s )
7
normalize a pandas dataframe `df` by row
df . div ( df . sum ( axis = 1 ) , axis = 0 )
8
swap values in a tuple/list inside a list `mylist`
map ( lambda t : ( t [ 1 ] , t [ 0 ] ) , mylist )
9
Swap values in a tuple/list in list `mylist`
[ ( t [ 1 ] , t [ 0 ] ) for t in mylist ]
10
Find next sibling element in Python Selenium?
driver . find_element_by_xpath ( "//p[@id, 'one']/following-sibling::p" )
11
find all occurrences of the pattern '\\[[^\\]]*\\]|\\([^\\)]*\\)|"[^"]*"|\\S+' within `strs`
re . findall ( '\\[[^\\]]*\\]|\\([^\\)]*\\)|"[^"]*"|\\S+' , strs )
12
generate the combinations of 3 from a set `{1, 2, 3, 4}`
print ( list ( itertools . combinations ( { 1 , 2 , 3 , 4 } , 3 ) ) )
13
add multiple columns `hour`, `weekday`, `weeknum` to pandas data frame `df` from lambda function `lambdafunc`
df [ [ 'hour' , 'weekday' , 'weeknum' ] ] = df . apply ( lambdafunc , axis = 1 )
14
BeautifulSoup search string 'Elsie' inside tag 'a'
soup . find_all ( 'a' , string = 'Elsie' )
15
Convert a datetime object `my_datetime` into readable format `%B %d, %Y`
my_datetime . strftime ( '%B %d, %Y' )
16
parse string `s` to int when string contains a number
int ( '' . join ( c for c in s if c . isdigit ( ) ) )
17
add dictionary `{'class': {'section': 5}}` to key 'Test' of dictionary `dic`
dic [ 'Test' ] . update ( { 'class' : { 'section' : 5 } } )
18
transforming the string `s` into dictionary
dict ( map ( int , x . split ( ':' ) ) for x in s . split ( ',' ) )
19
How to select element with Selenium Python xpath
driver . find_element_by_xpath ( "//div[@id='a']//a[@class='click']" )
20
find rows matching `(0,1)` in a 2 dimensional numpy array `vals`
np . where ( ( vals == ( 0 , 1 ) ) . all ( axis = 1 ) )
21
How to delete a record in Django models?
SomeModel . objects . filter ( id = id ) . delete ( )
22
build a dictionary containing the conversion of each list in list `[['two', 2], ['one', 1]]` to a key/value pair as its items
dict ( [ [ 'two' , 2 ] , [ 'one' , 1 ] ] )
23
convert list `l` to dictionary having each two adjacent elements as key/value pair
dict ( zip ( l [ : : 2 ] , l [ 1 : : 2 ] ) )
24
assign float 9.8 to variable `GRAVITY`
GRAVITY = 9.8
25
separate numbers from characters in string "30m1000n20m"
re . findall ( '(([0-9]+)([A-Z]))' , '20M10000N80M' )
26
separate numbers and characters in string '20M10000N80M'
re . findall ( '([0-9]+|[A-Z])' , '20M10000N80M' )
27
separate numbers and characters in string '20M10000N80M'
re . findall ( '([0-9]+)([A-Z])' , '20M10000N80M' )
28
Get a list of words from a string `Hello world, my name is...James the 2nd!` removing punctuation
re . compile ( '\\w+' ) . findall ( 'Hello world, my name is...James the 2nd!' )
29
Convert string '03:55' into datetime.time object
datetime . datetime . strptime ( '03:55' , '%H:%M' ) . time ( )
30
request url 'https://www.reporo.com/' without verifying SSL certificates
requests . get ( 'https://www.reporo.com/' , verify = False )
31
Extract values not equal to 0 from numpy array `a`
a [ a != 0 ]
32
map two lists `keys` and `values` into a dictionary
new_dict = { k : v for k , v in zip ( keys , values ) }
33
map two lists `keys` and `values` into a dictionary
dict ( ( k , v ) for k , v in zip ( keys , values ) )
34
map two lists `keys` and `values` into a dictionary
dict ( [ ( k , v ) for k , v in zip ( keys , values ) ] )
35
find the string matches within parenthesis from a string `s` using regex
m = re . search ( '\\[(\\w+)\\]' , s )
36
Enable the SO_REUSEADDR socket option in socket object `s` to fix the error `only one usage of each socket address is normally permitted`
s . setsockopt ( SOL_SOCKET , SO_REUSEADDR , 1 )
37
append the sum of each tuple pair in the grouped list `list1` and list `list2` elements to list `list3`
list3 = [ ( a + b ) for a , b in zip ( list1 , list2 ) ]
38
converting hex string `s` to its integer representations
[ ord ( c ) for c in s . decode ( 'hex' ) ]
39
sort list `student_tuples` by second element of each tuple in ascending and third element of each tuple in descending
print ( sorted ( student_tuples , key = lambda t : ( - t [ 2 ] , t [ 0 ] ) ) )
40
get list of duplicated elements in range of 3
[ y for x in range ( 3 ) for y in [ x , x ] ]
41
read the contents of the file 'file.txt' into `txt`
txt = open ( 'file.txt' ) . read ( )
42
divide each element in list `myList` by integer `myInt`
myList [ : ] = [ ( x / myInt ) for x in myList ]
43
python: dots in the name of variable in a format string
"""Name: {0[person.name]}""" . format ( { 'person.name' : 'Joe' } )
44
replace white spaces in dataframe `df` with '_'
df . replace ( ' ' , '_' , regex = True )
45
convert date `my_date` to datetime
datetime . datetime . combine ( my_date , datetime . time . min )
46
convert tuple `tst` to string `tst2`
tst2 = str ( tst )
47
get modified time of file `file`
time . ctime ( os . path . getmtime ( file ) )
48
get creation time of file `file`
time . ctime ( os . path . getctime ( file ) )
49
get modification time of file `filename`
t = os . path . getmtime ( filename )
50
get modification time of file `path`
os . path . getmtime ( path )
51
get modified time of file `file`
print ( ( 'last modified: %s' % time . ctime ( os . path . getmtime ( file ) ) ) )
52
get the creation time of file `file`
print ( ( 'created: %s' % time . ctime ( os . path . getctime ( file ) ) ) )
53
get the creation time of file `path_to_file`
return os . path . getctime ( path_to_file )
54
execute os command ''TASKKILL /F /IM firefox.exe''
os . system ( 'TASKKILL /F /IM firefox.exe' )
55
split string `string` on whitespaces using a generator
return ( x . group ( 0 ) for x in re . finditer ( "[A-Za-z']+" , string ) )
56
Unpack each value in list `x` to its placeholder '%' in string '%.2f'
""", """ . join ( [ '%.2f' ] * len ( x ) )
57
match regex pattern '(\\d+(\\.\\d+)?)' with string '3434.35353'
print ( re . match ( '(\\d+(\\.\\d+)?)' , '3434.35353' ) . group ( 1 ) )
58
replace parentheses and all data within it with empty string '' in column 'name' of dataframe `df`
df [ 'name' ] . str . replace ( '\\(.*\\)' , '' )
59
create a list `result` containing elements form list `list_a` if first element of list `list_a` is in list `list_b`
result = [ x for x in list_a if x [ 0 ] in list_b ]
60
generate all possible string permutations of each two elements in list `['hel', 'lo', 'bye']`
print ( [ '' . join ( a ) for a in combinations ( [ 'hel' , 'lo' , 'bye' ] , 2 ) ] )
61
get a list of items form nested list `li` where third element of each item contains string 'ar'
[ x for x in li if 'ar' in x [ 2 ] ]
62
Sort lists in the list `unsorted_list` by the element at index 3 of each list
unsorted_list . sort ( key = lambda x : x [ 3 ] )
63
Log message 'test' on the root logger.
logging . info ( 'test' )
64
Return a subplot axes positioned by the grid definition `1,1,1` using matpotlib
fig . add_subplot ( 1 , 1 , 1 )
65
Sort dictionary `x` by value in ascending order
sorted ( list ( x . items ( ) ) , key = operator . itemgetter ( 1 ) )
66
Sort dictionary `dict1` by value in ascending order
sorted ( dict1 , key = dict1 . get )
67
Sort dictionary `d` by value in descending order
sorted ( d , key = d . get , reverse = True )
68
Sort dictionary `d` by value in ascending order
sorted ( list ( d . items ( ) ) , key = ( lambda x : x [ 1 ] ) )
69
elementwise product of 3d arrays `A` and `B`
np . einsum ( 'ijk,ikl->ijl' , A , B )
70
Print a string `card` with string formatting
print ( 'I have: {0.price}' . format ( card ) )
71
Write a comment `# Data for Class A\n` to a file object `f`
f . write ( '# Data for Class A\n' )
72
move the last item in list `a` to the beginning
a = a [ - 1 : ] + a [ : - 1 ]
73
Parse DateTime object `datetimevariable` using format '%Y-%m-%d'
datetimevariable . strftime ( '%Y-%m-%d' )
74
Normalize line ends in a string 'mixed'
mixed . replace ( '\r\n' , '\n' ) . replace ( '\r' , '\n' )
75
find the real user home directory using python
os . path . expanduser ( '~user' )
76
index a list `L` with another list `Idx`
T = [ L [ i ] for i in Idx ]
77
get a list of words `words` of a file 'myfile'
words = open ( 'myfile' ) . read ( ) . split ( )
78
Get a list of lists with summing the values of the second element from each list of lists `data`
[ [ sum ( [ x [ 1 ] for x in i ] ) ] for i in data ]
79
summing the second item in a list of lists of lists
[ sum ( [ x [ 1 ] for x in i ] ) for i in data ]
80
sort objects in `Articles` in descending order of counts of `likes`
Article . objects . annotate ( like_count = Count ( 'likes' ) ) . order_by ( '-like_count' )
81
return a DateTime object with the current UTC date
today = datetime . datetime . utcnow ( ) . date ( )
82
create a list containing the multiplication of each elements at the same index of list `lista` and list `listb`
[ ( a * b ) for a , b in zip ( lista , listb ) ]
83
fetch smilies matching regex pattern '(?::|;|=)(?:-)?(?:\\)|\\(|D|P)' in string `s`
re . findall ( '(?::|;|=)(?:-)?(?:\\)|\\(|D|P)' , s )
84
match the pattern '[:;][)(](?![)(])' to the string `str`
re . match ( '[:;][)(](?![)(])' , str )
85
convert a list of objects `list_name` to json string `json_string`
json_string = json . dumps ( [ ob . __dict__ for ob in list_name ] )
86
create a list `listofzeros` of `n` zeros
listofzeros = [ 0 ] * n
87
decode the string 'stringnamehere' to UTF-8
stringnamehere . decode ( 'utf-8' , 'ignore' )
88
Match regex pattern '((?:A|B|C)D)' on string 'BDE'
re . findall ( '((?:A|B|C)D)' , 'BDE' )
89
Create a key `key` if it does not exist in dict `dic` and append element `value` to value.
dic . setdefault ( key , [ ] ) . append ( value )
90
Get the value of the minimum element in the second column of array `a`
a [ np . argmin ( a [ : , ( 1 ) ] ) ]
91
extend dictionary `a` with key/value pairs of dictionary `b`
a . update ( b )
92
removing key values pairs with key 'mykey1' from a list of dictionaries `mylist`
[ { k : v for k , v in d . items ( ) if k != 'mykey1' } for d in mylist ]
93
Removing key values pairs from a list of dictionaries
[ dict ( ( k , v ) for k , v in d . items ( ) if k != 'mykey1' ) for d in mylist ]
94
create 3 by 3 matrix of random numbers
numpy . random . random ( ( 3 , 3 ) )
95
make new column 'C' in panda dataframe by adding values from other columns 'A' and 'B'
df [ 'C' ] = df [ 'A' ] + df [ 'B' ]
96
create a list of values from the dictionary `programs` that have a key with a case insensitive match to 'new york'
[ value for key , value in list ( programs . items ( ) ) if 'new york' in key . lower ( ) ]
97
append a path `/path/to/main_folder` in system path
sys . path . append ( '/path/to/main_folder' )
98
get all digits in a string `s` after a '[' character
re . findall ( '\\d+(?=[^[]+$)' , s )
99
python pickle/unpickle a list to/from a file 'afile'
pickle . load ( open ( 'afile' , 'rb' ) )

No dataset card yet

New: Create and edit this dataset card directly on the website!

Contribute a Dataset Card
Downloads last month
6
Add dataset card