Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do I split the output?
#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]}"
nilamo and AnunnakiKungFu like this post
Reply


Messages In This Thread
How do I split the output? - by AnunnakiKungFu - Feb-25-2021, 10:34 PM
RE: How do I split the output? - by bowlofred - Feb-25-2021, 11:05 PM
RE: How do I split the output? - by AnunnakiKungFu - Feb-25-2021, 11:13 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [split] Why is there an output of None akbarza 1 494 Nov-27-2023, 02:53 PM
Last Post: deanhystad
  How to "tee" (=split) output to screen and into file? pstein 6 1,444 Jun-24-2023, 08:00 AM
Last Post: Gribouillis
  How to Split Output Audio on Text to Speech Code Base12 2 6,903 Aug-29-2020, 03:23 AM
Last Post: Base12
  [split] No Error, and No Output vishal2894 1 1,741 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