-Bugün sizlere import os Kullanarak işletim sistemi Tespitini Gstereceğim Ben If Else Kullanarak Duzgün Şekle Getirdim--
Kod:
import os
a=os.name
if a == "nt":
{
print("Kullandığınız İşletim sistemi Windows")
}
if a =="posix":
{
print("Linux Veya Mac os")
}
input()
