I'm aware of this convention to keep each import on its own line but from technical standpoint is there any difference between:
import sys, os
or
import sys
import os
Personally, I have no problem to keep both on one line unless there's really good reason not to do so.
If this topic gets closed for being opinionated I'll take it as there's no valid reason for giving imports its own line.
Does Python treats the imports differently in any circumstances ?