Horje
split a string by comma in python Code Example
split a string by comma in python
str = 'apple,orange,grape'

#split string by ,
chunks = str.split(',')

print(chunks)




Python

Related
how to split a string by space in python Code Example how to split a string by space in python Code Example
logarithmic scale fitting python Code Example logarithmic scale fitting python Code Example
best fit line python log log scale Code Example best fit line python log log scale Code Example
boto3 delete bucket object Code Example boto3 delete bucket object Code Example
how to split a string by colon in python Code Example how to split a string by colon in python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7