how to split string with comma in python

# We can use the split() function and put a "," in the parameter 
# It'll return a list with the string split up by commas.
txt = "hello, my name is Peter, I am 26 years old"

x = txt.split(",")
print(x)

# You can also do this
for thing in x:
  print(thing)

4
1
Sam 105 points

                                    str = 'apple,orange,grape'

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

print(chunks)

4 (1 Votes)
0
4.33
9

                                    # We can use the split() function and put a "," in the parameter 
# It'll return a list with the string split up by commas.
txt = "hello, my name is Peter, I am 26 years old"

x = txt.split(",")
print(x)

4.33 (9 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
python split array by comma convert to a list split by comma python split array on comma python and print string of strings separated by comma in pyhton how to split a string by comma in python separate values by comma in python where $$ is present separate values by comma in python how to split text by comma in python split string by comma in python python split string by comma into two variables split text by comma python python separate string with comma split string with commas python split string python i comma split by dot or comma python separate string by commas python split comma separated string in python into list split string that has comma python how to split list with comma in python split comma separated string into array python split string with comma python how to split a string by commas python# how to split in array from comma in python Python split a number commas split sting by comma python how to split with comma seperated text in python python split comma separated array of strings python split comma separated array of string python split comma separated string split string at comma to form array python hoe to split the numbers using comma in python how to split at a comma python how to separate words with comma in string in python python split add comma and squote python3 split string by comma split string on commas python comma separated split string python explode by comma python python split at split at comma split comma separated string in python to array split comma separated string in python split python string by comma split a string based on a comma python array split eith comma in python split a string in python based on comma python split by comma and space python seperate a string with comma python3 split text in string by comma split a comma separated string in python how to split string with comma in python python split string at comma splitting string into list based on comma python string split by comma python split comma separated string to list split string into list by comma python python split text comma how to split a comma separated string in python split a string separated by comma in python separate every string with comma python how to split a string based on comma in python python3 how to split a string from comma letter separate from word using comma in python python split file line using comma python split string on comma and iterate python convert string to list split but keep commas split strings by comma python how to split by comma in python python split number by comma split by comma in python how to use separate with a comma in python with sep python seperate string by comma get element from comma separtaed string python split comma python open file split data on comma pytho split data on comma pytho split from comma python split each line python comma python split at period or comma separate number and string by comma python how to split string by comma in python how to split data from 3rd comma in python split by second comma python python not splitting items that contains comma , how to split a file separated by comma in python understanding split and comma in array python split and comma in array python what is split and comma in list python split comma in python Python split string comma separate string by comma python python split string with comma and tab split line on comma python python read explode with comma split string by comma python python split comma python split commas pyuthon split on comma python split string on comma python split a string by commas python split a string by comma split array by comma python list split by comma python python split string by comma split string without commas python how to split string with comma into list python split string comma separated cut a string separated by comma python python split string by comma or space python list split by comma python split at every comma split text by comma python python separate string by comma split comma separated string python split string after comma python list into string split comma read string separated by comma python how to separate string by comma in python python split string into array by comma split by comma python split string to list by comma python python split line by comma python split by comma string to array sep by comma python python split string by comma into list split strings by comma in list python split comma separated values in python split a string by comma python
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source