We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
import platform def UsePlatform(): sysstr = platform.system() if(sysstr =="Windows"): print ("Call Windows tasks") elif(sysstr == "Linux"): print ("Call Linux tasks") else: print ("Other System tasks") UsePlatform()
There was an error while loading. Please reload this page.
[[TOC]]