[Python] Introduction of isinstance() function
If we want to determine a data type of variable in Python (such as int
, float
, bool
, str
… etc), we may be use isinstance()
function instead of type()
function.
If we want to determine a data type of variable in Python (such as int
, float
, bool
, str
… etc), we may be use isinstance()
function instead of type()
function.
In Linux system, we often create many automated scripts to help us handle all kinds of work. Today, I need to automatically log in to the remote server on a local host and execute commands on the server.
Read More »[Linux] Use “ssh” Command to log in the Remote Server and Execute Commands