Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do I split the output?
#1
Quick and easy question, I am sure. I am creating two lists and then taking one item from each list to create a separate list. When I run the program the output doesn't come out as two different items, only in one item. How do I split the output into two items? It outputs "ESPFender" right now and I want "ESP" "Fender". Thank you!

fave_guitars = ["ESP", "Breedlove", "Ibanez"]
bad_guitars = ["Gibson", "Fender", "Jackson"]

fave_and_least = fave_guitars[0] + bad_guitars[1]

print(fave_and_least)
Reply
#2
# Join elements with a space (nice for a long list)
fave_and_least = " ".join(fave_guitars[0], bad_guitars[1])
# Just toss in a space
fave_and_least = fave_guitars[0] + " " + bad_guitars[1]
# Use a f-string for formatting and have a space between the elements
fave_and_least = f"{fave_guitars[0]} {bad_guitars[1]}"
AnunnakiKungFu and nilamo like this post
Reply
#3
Thank you very much!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [split] Why is there an output of None akbarza 1 415 Nov-27-2023, 02:53 PM
Last Post: deanhystad
  How to "tee" (=split) output to screen and into file? pstein 6 1,288 Jun-24-2023, 08:00 AM
Last Post: Gribouillis
  How to Split Output Audio on Text to Speech Code Base12 2 6,782 Aug-29-2020, 03:23 AM
Last Post: Base12
  [split] No Error, and No Output vishal2894 1 1,673 Jul-02-2019, 03:20 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020