Teknik Informatika/Python/Try Except
Tampilan
try:
from setuptools import setup, Command
except ImportError:
from distutils.core import setup, Command
If (ada error) then (lakukan sesuatu). Sangat bermanfaat sekali.
try:
from setuptools import setup, Command
except ImportError:
from distutils.core import setup, Command
If (ada error) then (lakukan sesuatu). Sangat bermanfaat sekali.