Skip to main content

Make Quiz Game with Python

In our previous Python tutorial, we have explained to Get Wifi Passwords using Python. In this tutorial, we will explain how to Make Quiz Game with Python.

Python is a popular programming language. It’s very easy to learn and any beginners can learn it to code within a short span of time. The beginners can easily code simple games using Python to expand their learning curve.

Here in this tutorial, we will code a text base Quiz Game in Python. It’s a simple Game without using any Python module. (more…)

Building Mobile Application with Python

In our previous Python tutorial, we have explained to Get Wifi Passwords using Python. In this tutorial, we will explain how to Build a Mobile Application with Python.

In recent web development transformation, the applcation developed to run on all plateform such IOS, Android, Windows, Linux etc and also on all devices (Desktops, Tablets, mobiles etc.).

You can easily develop applications to run on all plateform and devices using Kivy. Kivy is a free and open source Python framework for developing mobile apps and other multitouch application software with a natural user interface. (more…)

Why use Rust for embedded devices?

The Internet of Things (IoT) is one of the fastest-growing sectors in technology. It has become a central part of our everyday lives. Embedded technology is a fundamental part of the IoT. Embedded devices contain a special-purpose computing system built into them. Recent advances in processor technology and the ever-increasing demand for low-power, smart and reliable IoT devices are driving the market for embedded system development.

(more…)

Make Food Ordering Website with PHP & MySQL

In our previous PHP project tutorial, we have developed Online Exam System with PHP and MySQL. In this tutorial, we will develop Food Ordering Website with PHP and MySQL.

The Online Food Order websites are very popular as it connect with different restaurants and customers. The websites enables restaurants to manage food foods and customers can make food order online.

So here in this tutorial, we develop a complete Food Ordering Website Project. The project contains an Admin section from where administrator can manage food items and front-end for customer side to list food items and make order. (more…)

Get Wifi Passwords using Python

In our previous Python tutorial, we have developed Snake Game using Python. In this tutorial, we will explain how to get saved WiFi Passwords with Python.

While connecting with multiple devices, we sometimes forget passwords. So here we will exaplain how easily you can get all saved wifi passwords with connection details.

With Python, you can easily get the saved Wifi passwords details using subprocess module. The module allow to check the conencted wifi passwords by running netsh commands inside our Python program. (more…)

Make Snake Game in Python

In our previous Python tutorial, we have implemented Palindrome Check Program in Python. In this tutorial, we will develop a Snake Game using Python.

If you remember that classic snake game and enjoy playing, then I am sure you will find this tutorial interesting.

With Python, there are number of ways to develop game. we can use PyGame library or can use the Turtle library from Python to develop Game. So here in this tutorial we will use Turtle library to develop a snake game. In addition to this module, we will also use Random module. (more…)