Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -118,7 +118,7 @@ if __name__ == '__main__': | ... | @@ -118,7 +118,7 @@ if __name__ == '__main__': |
| 118 | lines_4 = [] | 118 | lines_4 = [] |
| 119 | # Se abre el cuarto archivo | 119 | # Se abre el cuarto archivo |
| 120 | with open (os.path.join(args.outputPath,"MultWord_NOAlphanum.txt"), "w+") as oFile: | 120 | with open (os.path.join(args.outputPath,"MultWord_NOAlphanum.txt"), "w+") as oFile: |
| 121 | - for index, row in file.iterrows(): | 121 | + for index, row in file.iterrows(): |
| 122 | # Se verifica que la primer columna sea multipalabra. | 122 | # Se verifica que la primer columna sea multipalabra. |
| 123 | if len(row[0].split(" ")) != 1: | 123 | if len(row[0].split(" ")) != 1: |
| 124 | conditions_4.append(row[0]) | 124 | conditions_4.append(row[0]) | ... | ... |
-
Please register or login to post a comment