I need some transform about numbers like 100000 to 100.000 in Python. How can I do that ?
I tried it with using Format(number,'.d'). But I have DataFrame, or List. When I execute the code, it says unsupported format string passed to numpy.ndarray.format
users = data.iloc[:,[3]].values.astype(str)
for i in range(len(users)):
users[i] = (format (users[i], ',d'))
users[i] = (format (users[i], ',d'))
TypeError: unsupported format string passed to numpy.ndarray.format