Everything you want to know about Modules in Python

Modules are the files with the .py extension which contain Python code that can be imported inside another Python Program for different use cases.

Everything you need to know about Python Lambda Function

The concept of anonymous functions is available in most of the popular programming languages. They are also called lambda expressions.

Deploy a Basic Python Bot to Azure | Microsoft Bot Framework

Deploy a basic python bot created using Bot Framework SDK to Azure. We will deploy an Echo that we created in our last blog using Python.

Create a Basic Echo Bot using Microsoft Bot Framework in Python

Create a chatbot using Bot Framework SDK in Python. Creating your bot locally does not require the Azure subscription. We will work with Windows OS.

How To Create A QR-Code Using Python?

QR-CODE is nothing but a QUICK RESPONSE Code. It is a two – dimensional pictographic code used for its fast readability. Here we will create QR Code using Python.

How To Make A Chatbot Using Python?

A Chatbot is a way of conversion between the user and the computer. As simply as we all know that the Siri, Alexa, and Duolingo are some real-world examples of chatbots.

Write a Python Program To Print Counting Numbers

In this post, we will write a Python code to read 2 numbers from the user and print the numbers between them. For example, 5 and 10 are two numbers taken from the user. Output will be 5,6,7,8,9,10.

Write a Python Program to Read Any String and print the middle character of it

In this post, we will write a simple Python code that will read any string and print the middle character from it. We will write the code and also show the output.

Send Image in Skype Chat using Python

In this post, we will send an image to the Skype contact programmatically using Python. Before starting with the code, install the python module skpy. Go to any command line and enter the below command.

Encode String using Base64 in Python

Base64 encoding schemes are commonly used when there is a need to encode binary data, especially when that data needs to be stored and transferred over media that are designed to deal with text. This encoding helps to ensure that the data remains intact without modification during transport.

Up ↑