Python Decorators Demonstration
Posted on Nov. 1, 2019, 5:26 p.m.
When improving your Python programming language, you must come across the Decorators that are one of the elegant features heavily used in modern libraries and frameworks. To encapsulate a lot of implementation details and leave out a simple interface, the …
Read MoreIs Python a Programming language or Scripting Language?
Posted on Nov. 1, 2019, 5:11 p.m.
Is Python a Programming Language or Scripting Language?
Python is one of the most famous programming language developed by Guido Van Rossum. Python is popular among developers due to its clear syntax and easy code even for beginners. For those …
Read MoreImportant 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 MoreTop 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 MoreHow 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 MoreConvert 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:
- Support any size document, with simple, per-document pricing.
- Supports layout and …
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 MoreLive 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 MorePython 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 …
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