Python Step

Search this website

Python for beginners:1 - Setup Python 3

...

What is the meaning of Data Structure?

Data Structure is the building that  save and manipulate the data of  your program in it in memory, in your real life imagine you save your things in a box :) or in your office temporarily to use it later,here's the same a box in memory (Structure) to hold your data...

Simple script to convert binary to decimal in python

Here is a simple code to convert binary numbers to decimal ,I do not handle if the user enter a letter or decimal numbers ,it is just simple to do the purpose sum=0 counter=0 l=[] userInput=input("Enter binary number : ") userInput[::-1] for i in userInput: sum=sum+(int(i)*pow(2,counter)) counter=counter+1 print(sum) ...

How to easily install django on windows (simple way)

About four or five monthes ago I was a completely beginner in django ,I know python seince a year ago but I wanted to work with web development ,so I started to read about web development in python and the frameworks working with web ,I read about django and how it was a great framework...

Best free python IDE

As a brginner you search on free IDEs to help you accomplish your tasks,here I recommend free IDEs for you and fell free to enrich my knowlage If you know best  1.pyscripter : free open scource IDE , with a lot of feartures 2.python official IDLE ...

Error types in python:Syntax error , Logical error , Exception error

As we know that there are a lot of error types that might happen during the programming process,one kind of it is called a Syntax Error which occured when you violate the rules of writing the code or in another mean as it's name reffere when there is an error in the syntax of the language , this error in fact is easy to detected by the compiler ,the compiler will show you what is...

Factorial using recursion in python

Simple function to calculate factorial of number  using recursion in python  def factorial(n):    fact=1    if n==0:        return 1    elif n==1:        return 1    else:        fact=factorial(n-1)*n       ...