Skip to content

Instantly share code, notes, and snippets.

@pralabhsaxena05
Created March 26, 2021 16:28
Show Gist options
  • Save pralabhsaxena05/ac1e9ebef899fd275f10d2dc0295644a to your computer and use it in GitHub Desktop.
Save pralabhsaxena05/ac1e9ebef899fd275f10d2dc0295644a to your computer and use it in GitHub Desktop.
txt1 = "apple#banana#cherry#orange"
txt2 = "Hello how are you"
result1= txt1.split("#")
result2 = txt2.split(" ")
print(result1)
print(result2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment