Posts

Python Programming for the Absolute Beginner

Python Programming for the Absolute Beginner Python is an open source high level interpenetrated general purpose language. It was first time developed by  Guido van Rossum in 1991. The main purpose of its development is  readability and reduction of curly braces from the code and present it in an efficient way that is easily understandable by the humans.Like other programming language Python also provide facility of object oriented programming other than object oriented programming python also provide facility of structural programming. Because it is open source language it has many libraries that is the main reason of its popularity among the developers.Almost it has libraries for every type of work developer does not need to write the code for whole problem statement he/she has to only import library related with his/her work. Python releases  Python 2.0 Python 2.0 released in 2000 it has features like list ,list comprehension and garbage collection sy...

Big O Notation Solved Examples

Big O Notation Solved Examples (a) f ( n ) = 100 n 3 - 7 n 3 + 14 n 2 Solution: f(n)=93n 3 +14n 2 after removing all constants and lower order terms =O(n 3) (b)       f ( n ) = 100 n 3 - 100 n 3 + 7 n 2 Solution:      f(n)= 100n 3 - 100n 3 +7n 2 f(n)=7n 2 after removing all constants and lower order terms =O(n 2 ) (c) f ( n ) = log(7 n 2 ) Solution: f(n)=log(7n 2 ) after removing all constants and lower order terms =log(n) (d)       f(n) = 5 log log n + 4 log 2 (n) Solution: f(n)=5loglogn+4log 2 (n) after removing all constants and lower order terms =O (log 2 n ) (e) f ( n ) = . 001 n + 100 · 2 n Solution: f(n)=.001n+100 · 2 n after removing all constants and lower order terms =O (2 n ) (f)   f ( n ) = n 3 (1 + 6 n + 2014 n 2 ) Solution: f(n)=n 3 +6n 4 +2014n 5 after removing all constants and lower order terms =O ( n 5 ) (g) f ( n ) = (log ...

Python full course in hindi

Image
Python Python is a most powerful programming language.Python is a open source programming language this is also the main reason of using python world wide.Python has syntax closer to human language so it is easy to understand.In Python we does not need to use semicolons and curly braces. Here is a video that will give you complete information about the use of python and in this video speaker discuss why we use python what python can do for us.