Limitations of Python
Limitations of Python: 1) Performance-wise not up to the mark because it is interpreted language. 2) Not using for mobile Applications.
Limitations of Python: 1) Performance-wise not up to the mark because it is interpreted language. 2) Not using for mobile Applications.
Features of Python: 1) Simple and easy to learn: ➽ Python is a simple programming language. When we read Python program,we can feel like reading english statements. ➽ The syntaxes are very simple and only 30+ kerywords are available. ➽ When compared with other languages, we can write programs with very less number of lines.…
Read more
Introduction Python is a general-purpose high-level programming language. Python was developed by Guido Van Rossam in 1989 while working at National Research Institute at Netherlands. But officially Python was made available to public in 1991. The official Date of Birth for Python is : Feb 20th 1991. Python is recommended as first programming language for…
Read more
1) LANGUAGE FUNDAMENTALS Introduction Features of Python 1) Simple and Easy to Learn 2) Freeware and Open Source 3) High Level Programming Language 4) Platform Independent 5) Portability 6) Dynamically Typed 7) Both Procedure Oriented and Object Oriented 8) Interpreted 9) Extensible 10) Embedded 11) Extensive Library Limitations of Python ……………………………………………………………………. 5…
Read more
Bubble Sort Algorithm In this tutorial, you will learn how bubble sort works. Also, you will find working examples of bubble sort in C, C++, Java, and Python. Bubble sort is an algorithm that compares the adjacent elements and swaps their positions if they are not in the intended order. The order can be…
Read more
Python MongoDB Connectivity To create connection between Python programming language and MongoDB database, we need to first install pymongo driver. Here, we are creating an example that connects to the database and performs basic database operations. This example includes the following steps: 1) Install Driver $ pip install pymongo $ pip install pymongo<br /><br /><br /> 2) Create…
Read more
Connect SQLite with Python First you have to install Python and SQLite on your syatem. Install Python Use the following code: sudo apt-get update sudo apt-get upgrade python sudo apt-get update<br /> sudo apt-get upgrade python<br /> Press y and installation will be completed within seconds. Install SQLite Installation steps type in the following command: sudo apt-get install sqlite3 libsqlite3-dev sudo apt-get install sqlite3…
Read more
Python Tkinter Tutorial Tkinter tutorial provides basic and advanced concepts of Python Tkinter. Our Tkinter tutorial is designed for beginners and professionals. Python provides the standard library Tkinter for creating the graphical user interface for desktop based applications. Developing desktop based applications with python Tkinter is not a complex task. An empty Tkinter top-level window…
Read more
Python Tkinter Button The button widget is used to add various types of buttons to the python application. Python allows us to configure the look of the button according to our requirements. Various options can be set or reset depending upon the requirements. We can also associate a method or function with a button which…
Read more
Python Tkinter Canvas The canvas widget is used to add the structured graphics to the python application. It is used to draw the graph and plots to the python application. The syntax to use the canvas is given below. Syntax w = canvas(parent, options) w = canvas(parent, options)<br /> A list of possible options is given below. SN…
Read more