Python Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesPython Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old December 25th, 2012, 12:02 PM
bryanOnInternet bryanOnInternet is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 9 bryanOnInternet User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 45 m 48 sec
Reputation Power: 0
How to print out different sentences into one paragraph/block?

hello everyone, I just started off learning python and got stuck with the following problem. Greatly appreciate any guideline that can be provided to solve this problem as follows:

>>>firstline="John likes to play football"
>>>secondline="Kevin likes to play basketball"
>>>print (firsline+" .")
>>>John likes to play football.
>>>print (secondline+" .")
>>>Kevin likes to play basketball.

instead of printing out the following:
John likes to play football.
Kevin likes to play basketball

which is in a block/ paragraph, each of the sentences is printed out straight after the "enter" is pressed. How can I solve this problem? Thanks again for any help that can be provided.

Reply With Quote
  #2  
Old December 25th, 2012, 02:56 PM
b49P23TIvg's Avatar
b49P23TIvg b49P23TIvg is offline
Contributing User
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Aug 2011
Posts: 3,380 b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Month 2 Weeks 3 Days 13 h 7 m 19 sec
Reputation Power: 383
Code:
lambertdw$ python
Python 2.7.3 (default, Sep 26 2012, 21:51:14) 
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import textwrap
>>> a = 'John likes to play football'
>>> b = 'Kevin listens to Bach while playing his favorite sport, basketball'
>>> print(textwrap.fill('.  '.join((a,b))+'.'))
John likes to play football.  Kevin listens to Bach while playing his
favorite sport, basketball.
>>> 
>>> # use join method of string.  Example:
>>> ' ///// '.join(  ('iterable','of','strings')   )
'iterable ///// of ///// strings'
>>> 
>>> # End the final sentence with a period
>>> 'a string'+'PERIOD!!!'
'a stringPERIOD!!!'
>>> 
>>> 
>>> # invoke textwrap.fill to make the result beautiful.
>>> textwrap.fill('.  '.join((a,b))+'.')
'John likes to play football.  Kevin listens to Bach while playing his\nfavorite sport, basketball.'
>>> 
>>> 
>>> # Ooops!  print will finish the job.
>>> print(textwrap.fill('.  '.join((a,b))+'.'))
John likes to play football.  Kevin listens to Bach while playing his
favorite sport, basketball.
>>> 
>>> 
>>> # Make a narrow paragraph
>>> print(textwrap.fill('.  '.join((a,b))+'.', width = 20))
John likes to play
football.  Kevin
listens to Bach
while playing his
favorite sport,
basketball.
>>> 
__________________
[code]Code tags[/code] are essential for python code!

Reply With Quote
  #3  
Old December 26th, 2012, 08:28 AM
bryanOnInternet bryanOnInternet is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 9 bryanOnInternet User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 45 m 48 sec
Reputation Power: 0
thousands and thousands of thanks

Quote:
Originally Posted by b49P23TIvg
Code:
lambertdw$ python
Python 2.7.3 (default, Sep 26 2012, 21:51:14) 
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import textwrap
>>> a = 'John likes to play football'
>>> b = 'Kevin listens to Bach while playing his favorite sport, basketball'
>>> print(textwrap.fill('.  '.join((a,b))+'.'))
John likes to play football.  Kevin listens to Bach while playing his
favorite sport, basketball.
>>> 
>>> # use join method of string.  Example:
>>> ' ///// '.join(  ('iterable','of','strings')   )
'iterable ///// of ///// strings'
>>> 
>>> # End the final sentence with a period
>>> 'a string'+'PERIOD!!!'
'a stringPERIOD!!!'
>>> 
>>> 
>>> # invoke textwrap.fill to make the result beautiful.
>>> textwrap.fill('.  '.join((a,b))+'.')
'John likes to play football.  Kevin listens to Bach while playing his\nfavorite sport, basketball.'
>>> 
>>> 
>>> # Ooops!  print will finish the job.
>>> print(textwrap.fill('.  '.join((a,b))+'.'))
John likes to play football.  Kevin listens to Bach while playing his
favorite sport, basketball.
>>> 
>>> 
>>> # Make a narrow paragraph
>>> print(textwrap.fill('.  '.join((a,b))+'.', width = 20))
John likes to play
football.  Kevin
listens to Bach
while playing his
favorite sport,
basketball.
>>> 


wow! that was amazing, it helps a lot. Thank you very much.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPython Programming > How to print out different sentences into one paragraph/block?

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap