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
#7
I personally have no respect for courses and tutors who write in assignment "STRING ARE LISTS !!!!".

Strings are iterables. Strings are sequences. But this doesn't make them lists.

Whoever wrote it should be faced with:

>>> s = 'abc'
>>> type(s)
<class 'str'>
>>> isinstance(s, list)
False
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
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 422 Jan-23-2024, 04:11 PM
Last Post: deanhystad
  File "<string>", line 19, in <module> error is related to what? Frankduc 9 12,622 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,090 Jan-10-2023, 11:26 AM
Last Post: codinglearner
  python sql query single quote in a string mg24 1 1,094 Nov-18-2022, 08:01 PM
Last Post: deanhystad
  Print the line before the corrent line tester_V 9 1,589 Nov-18-2022, 08:39 AM
Last Post: Gribouillis
  Writing string to file results in one character per line RB76SFJPsJJDu3bMnwYM 4 1,402 Sep-27-2022, 01:38 PM
Last Post: buran
  Remove a space between a string and variable in print sie 5 1,823 Jul-27-2022, 02:36 PM
Last Post: deanhystad
  Inserting line feeds and comments into a beautifulsoup string arbiel 1 1,207 Jul-20-2022, 09:05 AM
Last Post: arbiel
  Can you print a string variable to printer hammer 2 1,984 Apr-30-2022, 11:48 PM
Last Post: hammer
  Print to a New Line when Appending File DaveG 0 1,238 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