Important Python Frameworks for Developers in Future

Posted on Nov. 1, 2019, 5:02 p.m.

In simple words, A web framework is a very useful tool for developing different web applications easily and effortlessly. It allows you to get rid of small tasks and problems associated with protocols, sockets and process/thread management while creating …

Read More

Top 5 Machine Learning Libraries in Python

Posted on Nov. 1, 2019, 4:56 p.m.

Machines are becoming more intelligent by day. With simple data observations, they can automatically pick out recurring patterns and make better decisions without any human intervention.

The explosive growth of machine learning is largely driven by multiple open-source tools which …

Read More

How to Hire Ninja Coders Without Visiting the Silicon Valley?

Posted on Nov. 1, 2019, 4:50 p.m.

How to Hire Ninja Coders Without Visiting the Silicon Valley?

Hiring people is difficult, and hiring coders, especially ninja coder is even more than difficult! But who is a Ninja coder?

They are known as the developer polyglots who don …

Read More

Convert HTML to PDF Like a Boss Using DocRaptor

Posted on Nov. 1, 2019, 4:38 p.m.

DocRaptor is an awesome package which allows you to convert your HTML document to PDF. It works with Python 2 and Python 3.

Here are some features of DocRaptor:

  1. Support any size document, with simple, per-document pricing.
  2. Supports layout and …
Read More

Learn Python on Your Own – What Do You Need for This

Posted on Nov. 1, 2019, 2:58 p.m.

It is said that programming is one of the highest earning jobs right now. With the steady rise of gadgets such as computers and mobile devices, it is a necessity to be hiring programmers to create applications and software that …

Read More

Live Coding

Posted on Nov. 1, 2019, 2:55 p.m.

Last week I stumbled upon livecoding.tv - a website that teaches students coding live. Here is how it works: Developers stream live video and users can ask questions and provide feedback.

You can teach yourself almost anything. Currently, the site …

Read More

Python String Formatting

Posted on Oct. 31, 2019, 5:44 p.m.

The format() method allows you format string in any way you want.

Syntax: template.format(p1, p1, .... , k1=v1, k2=v2)

template is a string containing format codes, format() method uses it's argument to substitute value for each format codes …

Read More

Python Lambda Function

Posted on Oct. 31, 2019, 5:25 p.m.

Python allows you to create anonymous function i.e function having no names using a facility called lambda function.

Lambda functions are small functions usually not more than a line. It can have any number of arguments just like a …

Read More

What is if __name__ == "__main__" ??

Posted on Oct. 31, 2019, 5:16 p.m.

Every module in Python has a special attribute called __name__. The value of __name__  attribute is set to '__main__'  when module run as main program. Otherwise, the value of __name__  is set to contain the name of the module.

Consider …

Read More

Python recursive functions

Posted on Oct. 31, 2019, 5:09 p.m.

When a function call itself is knows as recursion. Recursion works like loop but sometimes it makes more sense to use recursion than loop. You can convert any loop to recursion.

Here is how recursion works. A recursive function calls …

Read More