Nov 28, 2016
5 mins read
Today Python is one of the most popular languages for coding in Unix/Linux world. You can find it everywhere from Web development to Server Component development, XML parsing to configuration management. Here I will be mentioning 10 Python tips and tricks for developers.
Python is pre-installed in many Operating Systems which released in last two year. Ubuntu, Redhat, Mac OS, Free BSD , Solaris, etc.
To check which version of python is installed go to shell and type:
$ python
This command will give you the version information of Python and start Python’s interactive interpreter.
Here are the few famous applications which are built using Python such as :
Looking for beginner python developer jobs? Check them here.
By using Development Environment or IDE it will increase your productivity and easy to resolve error and warning. It will also help to debug the code, easy to navigate , integrate source control such as SVN, Git.
These are the recommended IDEs for Python Development.
|
|
datetime module is used to find the days between two dates. this example will find the days between today and 1 Jan 2017.
|
|
run this script:
$ python commandlinetest.py 10 20 30
Output
No of arguments passed: 3<br />
List of argumenrs : ['commandlinetest.py', '10', '20', '30']<br />
sys module will have the information about arguments passed by accessing sys.argv variable. sys.argv is a list of strings representing the arguments on the command-line.
The first Method will check if a string contains another string by using the in syntax. in takes two arguments, first on the left and second on the right, and returns True if the left argument is contained within the right argument.
|
|
Second Method offers a Library method called find(). This method is used with String Variable and it returns the position of the index of desired string. If the string is not found then -1 is returned.
Python is having the random library for generating random numbers. By default random library uses system time to generate random numbers.
|
|
Output :
Random number:-> 9
Random Range Between 10 to 20:-> 13
Random with Floating values:-> 5.012076169955613
random.randrange(10) sets the limit from 0 to 10 and return numbers between 0 to 10.
random.randrange(10,20) gives random values between 10 to 20.
random.uniform gives the result with floating value.
|
|
webbrowser module provides the easy way to open system’s default browser with URL mention in open method.
|
|
Many applications require a very precise time measurement. For this purpose, Python provides methods in time module. These methods will help you to measure execution time taken by the block of code.
In Linux and Unix, this command can let us know the execution of the python program.
$ time python nameofprogram.py
|
|
To combine any list of strings into a single string, use the join method of a string object. First print statement will join string with ” , ” and second will add new line.
Output:
one, two, three
one
two
three
Python uses + and * from manipulating String.
Using +
|
|
Using *
|
|
|
|
Output:
five
four
one
three
two
Let me know your views and best Python tips in a comment below.
Sharing is caring!