Python Forum
Printing from a text file not working as I thought it would
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Printing from a text file not working as I thought it would
#4
I can't reproduce it. Here I am creating a file with some nonsenses in it and run Python. You can see that every time I get an output. Are you sure that this is the whole scenario and you don't miss something?

victor at Jerry in /m/s/A/M/Chill
↪ touch /tmp/test.txt
victor at Jerry in /m/s/A/M/Chill
↪ echo "onsones
  csicnsns
  snddddnsod
  jcsodncs" > /tmp/test.txt
victor at Jerry in /m/s/A/M/Chill
↪ cat /tmp/test.txt 
onsones
csicnsns
snddddnsod
jcsodncs
victor at Jerry in /m/s/A/M/Chill
↪ python
Python 3.6.4 (default, Jan  5 2018, 02:35:40) 
[GCC 7.2.1 20171224] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> with open('/tmp/test.txt', 'r') as f:
...     content = f.read()
...     print(content)
... 
onsones
csicnsns
snddddnsod
jcsodncs

>>> with open('/tmp/test.txt', 'r') as f:
...     lines = f.readlines()
... 
>>> for line in lines:
...     print(line)
... 
onsones

csicnsns

snddddnsod

jcsodncs

>>> with open('/tmp/test.txt', 'r') as f:
...     for line in f:
...         print(line.rstrip())
... 
onsones
csicnsns
snddddnsod
jcsodncs
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply


Messages In This Thread
RE: Printing from a text file not working as I thought it would - by wavic - Jun-02-2018, 07:58 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Text conversion to lowercase is not working ineuw 3 1,276 Jan-16-2024, 02:42 AM
Last Post: ineuw
  Decryption not working if key has same symbol like text Paragoon2 0 786 Nov-11-2023, 09:32 PM
Last Post: Paragoon2
  while loop not working-I am using sublime text editor mma_python 4 2,103 Feb-05-2023, 06:26 PM
Last Post: deanhystad
Thumbs Up Need to compare the Excel file name with a directory text file. veeran1991 1 1,967 Dec-15-2022, 04:32 PM
Last Post: Larz60+
  ANSI not working for change of text colors BliepMonster 10 7,065 Nov-10-2022, 09:28 AM
Last Post: BliepMonster
  Modify values in XML file by data from text file (without parsing) Paqqno 2 3,061 Apr-13-2022, 06:02 AM
Last Post: Paqqno
  Converted Pipe Delimited text file to CSV file atomxkai 4 10,728 Feb-11-2022, 12:38 AM
Last Post: atomxkai
Question apk file not working on android polya001 0 1,628 Feb-06-2022, 11:58 PM
Last Post: polya001
  Subprocess.Popen() not working when reading file path from csv file herwin 13 23,465 May-07-2021, 03:26 PM
Last Post: herwin
  Printing x values from an csv file hobbyist 7 5,662 Mar-10-2021, 02:00 PM
Last Post: hobbyist

Forum Jump:

User Panel Messages

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