Nikhil

How to run SimpleHTTPServer in python3?

Python programming language is widely used in web development specially in backend development. In this Python article, we will learn about “python -m SimpleHTTPServer” and also we will learn What is the equivalent of “python -m SimpleHTTPServer” in Python3. Table Of Contents What is “python -m SimpleHTTPServer”? “python -m SimpleHTTPServer” in Python3 Using http.server Summary

How to run SimpleHTTPServer in python3? Read More »

Double star/asterisk (**) vs Star/Asterisk (*) in Python

While in python fuctionional programming we often come across (double star/asterisk) and * (star/asterisk). Most of the beginners find this extremely confusing. In this Python tutorial article we will discuss What does this mean and What does (double star/asterisk) and * (star/asterisk) do for parameters in Python? We all know that * (star/asterisk) and (double

Double star/asterisk (**) vs Star/Asterisk (*) in Python Read More »

Prompt for user input & read command-line arguments in Python

In this Python tutorial, we will learn how to prompt for user input and read command-line arguments in Python Programming language. This enhances the productivity and functionality, when we can directly take the input from user while executing the program. Table Of Contents Introduction User Input Method 1 : Using the Sys module Method 2

Prompt for user input & read command-line arguments in Python Read More »

Scroll to Top