I have started learning python recently and ran pylint on my python file. I got following comments.
from os import listdir
from os.path import isfile, join
I the above two lines, the Pylinter comment is
C: 5, 0: Imports from package os are not grouped (ungrouped-imports)
How can I achieve that ?
And another comment is in below line
import mimetypes, time, csv, platform, base64, django, sys, os, math, uuid, linecache, logging, requests
C: 5, 0: standard import "import mimetypes, time, csv, platform, base64, django, sys, os, math, uuid, linecache, logging, requests" should be placed before "import mimetypes, time, csv, platform, base64, django, sys, os, math, uuid, linecache, logging, requests" (wrong-import-order)
what does the above line mean and why is it required?