Python Forum
print function output wrong with strings.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
print function output wrong with strings.
#5
for example

test.txt content

1
2
3
4
5
6
7

if you want it in lines between <Number> and </Number>

f = open("test.txt", "r").read().splitlines()
for x in f:
    print(f"<Number>{x}</Number>")
Output:
<Number>1</Number> <Number>2</Number> <Number>3</Number> <Number>4</Number> <Number>5</Number> <Number>6</Number> <Number>7</Number>
Reply


Messages In This Thread
RE: print function output wrong with strings. - by Axel_Erfurt - Feb-11-2021, 04:41 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  print doesnt work in a function ony 2 315 Mar-11-2024, 12:42 PM
Last Post: Pedroski55
  problem in output of a function akbarza 9 1,215 Sep-29-2023, 11:13 AM
Last Post: snippsat
  Trying to understand strings and lists of strings Konstantin23 2 777 Aug-06-2023, 11:42 AM
Last Post: deanhystad
  Compiles Python code with no error but giving out no output - what's wrong with it? pythonflea 6 1,587 Mar-27-2023, 07:38 AM
Last Post: buran
  Python Pandas Syntax problem? Wrong Output, any ideas? Gbuoy 2 938 Jan-18-2023, 10:02 PM
Last Post: snippsat
  Python VS Code: using print command twice but not getting output from terminal kdx264 4 1,107 Jan-16-2023, 07:38 PM
Last Post: Skaperen
  How to print variables in function? samuelbachorik 3 918 Dec-31-2022, 11:12 PM
Last Post: stevendaprano
  How to output one value per request of the CSV and print it in another func? Student44 3 1,351 Nov-11-2022, 10:45 PM
Last Post: snippsat
  Am I wrong or is Udemy wrong? String Slicing! Mavoz 3 2,578 Nov-05-2022, 11:33 AM
Last Post: Mavoz
  How to print the output of a defined function bshoushtarian 4 1,321 Sep-08-2022, 01:44 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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