What is the meaning of Data Structure?
Norhan
06:33
Data Structure in Python
Simple script to convert binary to decimal in python
Noor
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)
Noor
17:33
django
Best free python IDE
Noor
12:57
python IDEs
Error types in python:Syntax error , Logical error , Exception error
Norhan
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...
09:27
Python Basics
Factorial using recursion in python
Norhan
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 ...
Subscribe to:
Posts
(
Atom
)