Quote from: ristau5741 on March 28, 2017, 06:25:39 AM
so where are these functions coming from
e.g.
interface.split()
int_range.append()
start_range.append()
each.split()
etc?
I don't see the functions being defined
are you importing a module from another source?
Adding to what dlots said. It might be helpful to remember when you get to picking up classes that everything in python is an object. Strings, lists, dictionaries...all the built-in types are just objects with their own methods (like .split() and .append()) that help you do cool shit.
Strings: https://docs.python.org/3/library/stdtypes.html#string-methods
Lists: https://docs.python.org/3/tutorial/datastructures.html
Dicts: https://docs.python.org/2/library/stdtypes.html#mapping-types-dict