Python Forum
Add http to a list on a text file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Add http to a list on a text file
#6
(Sep-23-2021, 05:47 PM)Blue Dog Wrote: snippsat, that worked perfect. I looked up " line.strip()" and I still don't know how it works
One thing that very useful in Python is take stuff out and test it interactively.
>>> # So when reading from file a new line(\n) is added
>>> url = 'http://www.dnr.state.mi.us/spatialdatalibrary/pdf_maps/topomaps/Adair.pdf\n'
>>> url
'http://www.dnr.state.mi.us/spatialdatalibrary/pdf_maps/topomaps/Adair.pdf\n'
>>> print(url)
http://www.dnr.state.mi.us/spatialdatalibrary/pdf_maps/topomaps/Adair.pdf

>>> # strip() take away \n
>>> url = url.strip()
>>> url
'http://www.dnr.state.mi.us/spatialdatalibrary/pdf_maps/topomaps/Adair.pdf'
>>> print(url)
http://www.dnr.state.mi.us/spatialdatalibrary/pdf_maps/topomaps/Adair.pdf
>>> 
Reply


Messages In This Thread
Add http to a list on a text file - by Blue Dog - Sep-22-2021, 02:49 PM
RE: Add http to a list on a text file - by ndc85430 - Sep-22-2021, 04:14 PM
RE: Add http to a list on a text file - by snippsat - Sep-22-2021, 04:16 PM
RE: Add http to a list on a text file - by Blue Dog - Sep-23-2021, 05:47 PM
RE: Add http to a list on a text file - by snippsat - Sep-23-2021, 06:40 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Thumbs Up Need to compare the Excel file name with a directory text file. veeran1991 1 1,287 Dec-15-2022, 04:32 PM
Last Post: Larz60+
  read a text file, find all integers, append to list oldtrafford 12 4,187 Aug-11-2022, 08:23 AM
Last Post: Pedroski55
  find some word in text list file and a bit change to them RolanRoll 3 1,677 Jun-27-2022, 01:36 AM
Last Post: RolanRoll
  Modify values in XML file by data from text file (without parsing) Paqqno 2 1,904 Apr-13-2022, 06:02 AM
Last Post: Paqqno
  Converted Pipe Delimited text file to CSV file atomxkai 4 7,433 Feb-11-2022, 12:38 AM
Last Post: atomxkai
  [split] How to convert the CSV text file into a txt file Pinto94 5 3,589 Dec-23-2020, 08:04 AM
Last Post: ndc85430
  Code not reading http link from .txt file (Beginner level) plarrip 3 2,574 Dec-17-2020, 11:33 PM
Last Post: bowlofred
  Regex text file to store data in list TheSithSiggi 1 1,635 Dec-03-2020, 04:46 PM
Last Post: bowlofred
  requests_futures.sessions retry list of HTTP 429 Johanoosterwaal 0 1,640 Nov-20-2020, 09:23 PM
Last Post: Johanoosterwaal
  Saving text file with a click: valueerror i/o operation on closed file vizier87 5 4,706 Nov-16-2020, 07:56 AM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

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