Python
-
HOW TO PRINT IN PYTHON?
•print function,which writes to standard out. Standard out is where the computer writes its output. •Strings or characters are enclosed in inverted commas. print(“hello world”) •Output of above statement. hello world •To print out multiple items, you can provide them separated by commas. You can put strings and numbers in a print function. print(“my”,”program no.”,1)…
-
WHAT IS THE PYTHON SYNTAX?
Python syntax defines a set of rules that are used to create Python statements while writing a Python Program. Case sensitivity in Python- Case sensitivity in Python is applicable as python is a case sensitive programming language. Indentation in Python- Indentation in Python is used to indicate a block of code, all statements within the…
-
HOW TO INSTALL PYTHON AND EXECUTE PROGRAM?
To check if you have python installed on a Windows PC, run the following command on the Command Line (cmd.exe)- python –version If you find that you do not have Python installed on your computer, then you can download it from website: https://www.python.org/ To execute the program first save the code in the text editor…
-
WHAT IS PYTHON?
Python is an interpreted programming language released in 1991. Python was created by Guido van Rossum, Dutch Programmer. Python is a high-level, interpreted, interactive, and object-oriented scripting language. Python source code is also available under the GNU General Public License (GPL). Python supports multiple programming paradigms, including Procedural, Object Oriented and Functional programming language. Python…
-
PYTHON FREE COURSE
Learn Python
If you have data with name of customers and their location, which data type will you use to store it in Python?
In Python, we can use dict data type to store key value pairs. In this example, customer name can be the key and their location can be the value in a dict data type. Dictionary is an efficient way to store data that can be looked up based on a key.
What is the output of calling a list variable with a index range in Python?
Python code output Even though the list has only 2 elements, the call to thelist with index 3 does not give any index error.
What are the popular Python libraries used in Data analysis?
Some of the popular libraries of Python used for Data analysis are: I. Pandas: Powerful Python Data Analysis Toolkit II. SciKit: This is a machine learning library in Python. III. Seaborn: This is a statistical data visualization library in Python. IV. SciPy: This is an open source system for science, mathematics and engineering implemented in…
How will you execute a Python script in Unix?
To execute a Python script in Unix, we need to have Python executor in Unix environment. In addition to that we have to add following line as the first line in a Python script file. #!/usr/local/bin/python This will tell Unix to use Python interpreter to execute the script.
What is the improvement in enumerate() function of Python?
In Python, enumerate() function is an improvement over regular iteration. The enumerate() function returns an iterator that gives (0, item[0]). E.g. >>> thelist=[‘a’,’b’] >>> for i,j in enumerate(thelist): print i,j 0 a 1 b
How can we do Functional programming in Python?
In Functional Programming, we decompose a program into functions. These functions take input and after processing give an output. The function does not maintain any state. Python provides built-in functions that can be used for Functional programming. Some of these functions are: I. Map() II. reduce() III. filter() Event iterators and generators can be used…
How will you share variables across modules in Python?
We can create a common module with variables that we want to share. This common module can be imported in all the modules in which we want to share the variables. In this way, all the shared variables will be in one module and available for sharing with any new module as well.
What is the difference between ‘is’ and ‘==’ in Python?
We use ‘is’ to check an object against its identity. We use ‘==’ to check equality of two objects. E.g. >>> lst = [10,20, 20] >>> lst == lst[:] True >>> lst is lst[:] False
How do you profile a Python script?
Python provides a profiler called cProfile that can be used for profiling Python code. We can call it from our code as well as from the interpreter. It gives use the number of function calls as well as the total time taken to run the script. We can even write the profile results to a…
How will you debug a piece of code in Python?
In Python, we can use the debugger pdb for debugging the code. To start debugging we have to enter following lines on the top of a Python script. import pdb pdb.set_trace() After adding these lines, our code runs in debug mode. Now we can use commands like breakpoint, step through, step into etc for debugging.
How will you check in Python, if a class is subclass of another class?
Python provides a useful method issubclass(a,b) to check whether class a is a subclass of b. E.g. int is not a subclass of long >>> issubclass(int,long) False bool is a subclass of int >>> issubclass(bool,int) True
What is the difference between split() and slicing in Python?
Both split() function and slicing work on a String object. By using split() function, we can get the list of words from a String. E.g. ‘a b c ‘.split() returns [‘a’, ‘b’, ‘c’] Slicing is a way of getting substring from a String. It returns another String. E.g. ‘a b c'[2:3] returns b
How will you handle an error condition in Python code?
We can implement exception handling to handle error conditions in Python code. If we are expecting an error condition that we cannot handle, we can raise an error with appropriate message. E.g. >>> if student_score < 0: raise ValueError(“Score can not be negative”) If we do not want to stop the program, we can just…
What is the difference between append() and extend() functions of a list in Python?
In Python, we get a built-in sequence called list. We can call standard functions like append() and extend() on a list. We call append() method to add an item to the end of a list. We call extend() method to add another list to the end of a list. In append() we have to add…
How can we retrieve data from a MySQL database in a Python script?
To retrieve data from a database we have to make use of the module available for that database. For MySQL database, we import MySQLdb module in our Python script. We have to first connect to a specific database by passing URL, username, password and the name of database. Once we establish the connection, we can…