I'm trying to join nine feature classes to the nine tables that go with them and it all needs to be in a loop.
I've done this so far
soils = arcpy.ListFeatureClasses()
for soil in range(0,len(soils)):
arcpy.JoinField_management()
I'm not sure if what I have done so far is correct and what to put in the parentheses so that all tables are joined to the right feature class.