Python Forum
Print string in a single line
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Print string in a single line
#1
'''
Write a program (using functions!) that asks the user for a long string containing multiple words. Print back to the user the same string, except with the words in backwards order.
Sample 
My name is Camilla 
output: Camilla is name My
-PSEUDOCODE-
1) Ask user a string 
2) Get string and break it 
3) Change the order of string 
4) Union the string 

STRING ARE LISTS !!!!
 string = "example"
  for c in string: 
    print "one letter: " + c 

'''

string_input = input("Insert a long phrase: ")

#print(string_input) test if input is print

split_string = string_input.split()
#print(split_string) test if string become list 

for word_break in reversed(split_string):
  

  

 print( "".join(word_break))
Output:
Insert a long phrase: My name is Camilla Camilla is name My
Hi,
I would that these words are display in a single line but I tried to change my loop statement and never is changed.
Can you help me?
Reply


Messages In This Thread
Print string in a single line - by RavCOder - Nov-07-2019, 03:02 PM
RE: Print string in a single line - by baquerik - Nov-07-2019, 03:05 PM
RE: Print string in a single line - by RavCOder - Nov-07-2019, 03:10 PM
RE: Print string in a single line - by RavCOder - Nov-07-2019, 04:28 PM
RE: Print string in a single line - by ichabod801 - Nov-07-2019, 03:06 PM
RE: Print string in a single line - by perfringo - Nov-08-2019, 07:50 AM
RE: Print string in a single line - by RavCOder - Nov-08-2019, 08:52 AM
RE: Print string in a single line - by perfringo - Nov-08-2019, 09:45 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  problem with spliting line in print akbarza 3 374 Jan-23-2024, 04:11 PM
Last Post: deanhystad
  File "<string>", line 19, in <module> error is related to what? Frankduc 9 12,529 Mar-09-2023, 07:22 AM
Last Post: LocklearSusan
  Need help on how to include single quotes on data of variable string hani_hms 5 2,010 Jan-10-2023, 11:26 AM
Last Post: codinglearner
  python sql query single quote in a string mg24 1 1,048 Nov-18-2022, 08:01 PM
Last Post: deanhystad
  Print the line before the corrent line tester_V 9 1,551 Nov-18-2022, 08:39 AM
Last Post: Gribouillis
  Writing string to file results in one character per line RB76SFJPsJJDu3bMnwYM 4 1,360 Sep-27-2022, 01:38 PM
Last Post: buran
  Remove a space between a string and variable in print sie 5 1,764 Jul-27-2022, 02:36 PM
Last Post: deanhystad
  Inserting line feeds and comments into a beautifulsoup string arbiel 1 1,181 Jul-20-2022, 09:05 AM
Last Post: arbiel
  Can you print a string variable to printer hammer 2 1,934 Apr-30-2022, 11:48 PM
Last Post: hammer
  Print to a New Line when Appending File DaveG 0 1,216 Mar-30-2022, 04:14 AM
Last Post: DaveG

Forum Jump:

User Panel Messages

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