Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
FYI, you can use enumerate() to simplify osinfo.py. Instead of this:
i=1 for item in profile: print( '#',i,' ',item) i=i+1;
i=1
for item in profile:
print( '#',i,' ',item)
i=i+1;
... do this ...
for i, item in enumerate(profile, 1): print( '#',i,' ',item)
for i, item in enumerate(profile, 1):