Python Forum
Splitting A String In Python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Splitting A String In Python
#1
Implement a function that, given a feedback
and the size  of the screen, splits the feedback
into lines so that:
  • each token (i.e. sequence of non-whitespace characters) belongs to one of the lines entirely;
  • each line is at most size characters long;
  • no line has trailing or leading spaces;
  • each line should have the maximum possible length, assuming that all lines before it were also the longest possible length.


I have to complete this function by filling up the ... spaces.

import ...

def feedbackReview(feedback, size):
    return ...
Examples:
For 

feedback = "This is an example feedback"
and 

size = 8
the output should be

feedbackReview(feedback, size) = ["This is", 
                                  "an", 
                                  "example", 
                                  "feedback"]
Thank you.
Reply


Messages In This Thread
Splitting A String In Python - by Saif133 - Jan-13-2017, 01:54 PM
RE: Splitting A String In Python - by Kebap - Jan-13-2017, 02:05 PM
RE: Splitting A String In Python - by Saif133 - Jan-13-2017, 02:43 PM
RE: Splitting A String In Python - by Mekire - Jan-13-2017, 03:07 PM
RE: Splitting A String In Python - by Saif133 - Jan-13-2017, 04:04 PM
RE: Splitting A String In Python - by Mekire - Jan-13-2017, 05:10 PM
RE: Splitting A String In Python - by Saif133 - Jan-14-2017, 04:09 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Using a function: splitting, joining, and slicing a string Drone4four 2 4,849 Dec-27-2018, 07:52 AM
Last Post: perfringo
  [split] Splitting a string into six pieces susmis666 1 2,218 Dec-25-2018, 06:16 PM
Last Post: ichabod801
  Quickest way of splitting a string yanhto 1 2,463 May-01-2018, 12:24 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

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