import os
with open('lista.txt', 'r') as lista:
l = lista.read().splitlines()
for s in l:
v = os.system('ping '+s)
print ((v).format)
This ping works, but returns with symbols like this: in letters that have an accent, I saw that the staff declare the variable and put .format, does not it have an easier way to not be putting .format at all ?? and put once the unicode utf-8 pro script all understand ??
I'm not sure how to do this,