Browsing tag

Python

What Programming Language Does Your Country Like?

Short Bytes: The rankings published by HackerRank based on the average scores across their challenges throw light on the programming languages adopted in different countries across the world. The ranking has been ordered according to the popularity of Java programming language. HackerRank is a leading code practice arena. More than a million coders from around […]

Why Python is Favorite Programming Language of Hackers ?

Many people learn Python specifically just for hacking and  when I first started with Python and moving from Java to Python personally felt a lot comfortable. When I needed to write a script which was not available on the internet I had to choose between Perl  and Python. Because Perl is another very popular open source interpreted […]

Why Should One Learn Python Programming Language?

Short Bytes: Why is Python now the most popular programming language taught in high-schools, computer science, and engineering schools? Python’s high-level approach and English-like syntax make it easy to learn, easy to write, and easy to extend. Python is the new de facto learning language around the world and here is why. Python was introduced […]

Kivy — A Cross-platform Python GUI Framework To Code Apps With Ease

Short Bytes: Have you ever wanted to create an app that can be used on PC, and OS X without the extra effort? What about Android and iOS? Kivy allows you do that with many additional features such as OpenGL ES rendering, custom widgets, and full multi-touch and orientation/tilt support. Kivy is a Free and Open […]

JavaScripthon — A Simple Python To ES6 JavaScript Translator

Short Bytes: If you are looking for a Python to JavaScript converter, JavaScripthon is worth checking out. JavaScripthon completes the conversion process without any full python-in-js environment. Read more to know everything about the project. So many, Python and JavaScript seem like similar languages — object oriented, functional hybrid, dynamically typed and a rich library. […]

How To Code Your Own Personal Assistant Using Python Programming

Short Bytes: In this article, I’m sharing the efforts of a programmer to create his own python-powered personal assistant. Using open source libraries for text-to-speech conversion and speech recognition, he describes a way to create a personal “Jarvis”. As his 2016’s challenge, Facebook co-founder and CEO Mark Zuckerberg announced that he’ll be coding his own […]

Hack This: Scripting Deeper, Better Hacks in Python

Part of the point in presenting small, hack-minded tutorials a la “Edit an Image in Python” or “Send an Email from Python” is that some subset of readers who actually follow the steps will wind up interested enough in the subject(s) to go deeper on their own. I can present a detailed recipe, but learning […]

A Simple Hangman Game Implemented In 3 Lines Of Python

Short Bytes: Today I’m sharing a clever implementation of Hangman in python by programmer Danver Braganza. Take a look at this 3-lines-long program and try to make it more compact. You might have come across Python scripts teaching you how to code the classic game “Hangman”. For those who don’t know, it’s a word guessing game for […]

TrumpScript – Two Coders Have Turned Donald Trump Into A Programming Language

Short Bytes: Participating in a hackathon and after a 20-hours long coding session, two programmers have written a python-based programming language called TrumpScript. This language is something Donal Trump would approve of. Take a look at the rules and syntax of the language and know more. Sam Shadwell and Chris Brown, two computer science students, […]

How To Find The People Stealing Your Tweets On Twitter

This small piece of python code will find the people stealing your tweets and copy-pasting them on their twitter timeline. This python script project is called TweetThief, you can download this python code on GitHub. Author of this project is David Longenecker, you can follow him on twitter @dnlongen. You need to have Twitter API module for […]

How to Build a Basic Web Crawler in Python

Short Bytes: Web crawler is a program that browses the Internet (World Wide Web) in a predetermined, configurable and automated manner and performs given action on crawled content. Search engines like Google and Yahoo use spidering as a means of providing up-to-date data. Webhose.io, a company which provides direct access to live data from hundreds of […]