In order to find to which class the variable belongs to you can use type () function. Example: a = 5 print(a, "is of type", type(a)). Output: 5 ...
確定! 回上一頁