Python Forum
Loop thru textfile, change 3 variables for every line
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Loop thru textfile, change 3 variables for every line
#2
Hi,
in a nutshell, you probably want to iterate through all the lines your file. Then you would split the string (line) into 3 substrings (your variables) and store the 3 substrings in 3 variables.

with open(data_txt, 'r') as f:  #open the file
    for line in f:  #iterate through every line of a text file
        split_string = line.split()  #split the line in a text file into substrings, in this case stored in a list "split_string"
        vlan= split_string[0]  #access first element in "split_string"
        vlanname= split_string[1]  #second element..
        subnet = split_string[2]  #third element...
        
        # here I guess you run your commands with vlan, vlanname and subnet
Does this help?
Reply


Messages In This Thread
RE: Loop thru textfile, change 3 variables for every line - by j.crater - Nov-09-2016, 10:57 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  textfile to customtkinter combobox janeik 6 1,868 Aug-31-2023, 02:50 AM
Last Post: deanhystad
  Trying to loop through code to plot seaborn line plots across multiple subplots eyavuz21 0 1,729 Dec-05-2022, 10:46 AM
Last Post: eyavuz21
  Creating a loop with dynamic variables instead of hardcoded values FugaziRocks 3 1,550 Jul-27-2022, 08:50 PM
Last Post: rob101
  WHILE Loop - constant variables NOT working with user input boundaries C0D3R 4 1,533 Apr-05-2022, 06:18 AM
Last Post: C0D3R
  Skipping line in text without Restarting Loop IdMineThat 4 1,540 Apr-05-2022, 04:23 AM
Last Post: deanhystad
  How to prevent python from going to new line in for loop? idknuttin 3 5,008 Feb-11-2022, 05:40 AM
Last Post: deanhystad
  How to make for loop display on 1 Line Extra 3 1,488 Jan-12-2022, 09:29 PM
Last Post: Extra
  how to use 3 variables python loop evilcode1 2 1,712 Nov-12-2021, 11:43 AM
Last Post: jamesaarr
  Change the varaible in For Loop quest 2 1,748 Aug-13-2021, 03:35 PM
Last Post: deanhystad
  Change variable value during a while loop? penahuse 2 4,140 Nov-15-2020, 11:53 PM
Last Post: penahuse

Forum Jump:

User Panel Messages

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