Python3 simple code to explain # the type() function print(type([]) is list) print(type([]) is not list) print(type(()) is tuple) print(type({}) is dict) ...
確定! 回上一頁