python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Split by coma the content of python list embedded in list
I need help in splitting by coma a content of a list that is inside a list, basically I have such data
[['Department of Computer Languages and Computing Sciences, University of Málaga, Málaga, Spain']...
Axton
Votes: 1
Answers: 1
Remove Parenthesis from Dictionary Value in Python
I have a dictionary where the data looks like:
imdb_data = {
'title': [
'The Shawshank Redemption',
'The Godfather',
'The Dark Knight',
'The Godfather: Part II']
'year': [
'(19...
Timothy C.
Votes: 0
Answers: 4
TCL multi-character split in Python?
I am splitting a text file using this tcl proc:
proc mcsplit "str splitStr {mc {\x00}}" {
return [split [string map [list $splitStr $mc] $str] $mc] }
# mcsplit --
# Splits a string base...
Nour
Votes: 0
Answers: 1
split a string representation with ranges into a list of dates
I have this pandas dataframe column with timeranges (02.07.2021 - 07.07.2021 ) and single days (04.08.2021) as a list.
Dates
'02.07.2021 - 07.07.2021 , 04.08.2021, 19.06.2021 - 21.06.2021'
...
daniel guo
Votes: 0
Answers: 1