Rules for Local and Global Variables in Python

AmitDiwan
Updated on 16-Sep-2022 12:46:41

2K+ Views

Scope of Variables in Python are of two types: local and global. Scope is defined as the accessibility of a variable in a region. Let us first understand both local and global scope before moving towards the rules. Local Scope Example This defines the local scope of a variable i.e. it can be accessed only in the function where it is defined. No access for a variable with local scope outside the function. Let’s see an example − # Variable with local scope can only be access inside the function def example(): i = 5 ... Read More

Convert String to Number in Python

AmitDiwan
Updated on 16-Sep-2022 12:40:58

949 Views

To convert a string to a number, there are various ways. Let’s see them one by one. Convert a string to number using int() Example In this example, we will convert a string to a number using the int() method − # String to be converted myStr = "200" # Display the string and it's type print("String = ", myStr) print("Type= ", type(myStr)) # Convert the string to integer using int() and display the type myInt = int(myStr) print("Integer = ", myInt) print("Type = ", type(myInt)) Output String = 200 Type= Integer = ... Read More

Best Python Resources

AmitDiwan
Updated on 16-Sep-2022 12:38:26

199 Views

Resources for any programming language includes Video Courses, Notes as well as E-books. Here, I will list the best resources of Python. Python Official Documentation A lot of websites are providing Python resources, but the official documentation still works the best. Let’s see the resources provided by them. Beginners Guide To Python − https://wiki.python.org/moin/BeginnersGuide Developer’s Guide To Python − https://devguide.python.org/ Free Python Books − https://wiki.python.org/moin/PythonBooks Python Standard Library − https://docs.python.org/3/library/index.html HOWTOs on Python −https://docs.python.org/3/howto/index.html Latest Talks on Python −https://pyvideo.org/ Python Resources Now, let us talk about the Python Resources except the official documentation. Following are some of ... Read More

Object Method Functionality in Python

AmitDiwan
Updated on 16-Sep-2022 12:36:40

193 Views

To return an empty object, the object() method is used in Python. This acts as a base for all the classes. Let’s see the syntax of object(). No parameter gets included − object() New properties or methods cannot be added to this object. This itself acts as a base for all properties and methods, default for any class. Create an Empty Object Example In this example, we will create an empty object using the object() method − # Create an empty object ob = object() # Display the empty object print("Object = ", ob) Output Object = ... Read More

Find Methods and Attributes of an Object in Python

AmitDiwan
Updated on 16-Sep-2022 12:33:33

2K+ Views

To find the attributes of an object, use the getarr() method in Python. To check if an attribute exist or not, use the hasattr() method. Set an attribute using the setattr() method in Python. Access the attributes of an object Example To access the attributes of an object, we will use the getattr() method in Python − class student: st_name ='Amit' st_age ='18' st_marks = '99' def demo(self): print(self.st_name) print(self.st_age) ... Read More

Sort One List by Values from Another List in Python

AmitDiwan
Updated on 16-Sep-2022 12:32:06

4K+ Views

We can sort a list by values from another list by setting up the 2nd list as index numbers for the values in the 1st List in sorted order. Sort a List by values from another list Example In this example, we will sort a list by values from another list i.e. the 2nd list will have the index in the order in which they are placed in sorted order − # Two Lists list1 = ['BMW', 'Toyota', 'Audi', 'Tesla', 'Hyundai'] list2 = [2, 5, 1, 4, 3] print("List1 = ", list1) print("List2 (indexes) = ", list2) # ... Read More

Create Multidimensional List in Python

AmitDiwan
Updated on 16-Sep-2022 12:29:39

1K+ Views

Multidimensional Lists are Lists within Lists. The left index as row number and right index as column number, for example list[r][c] Above, r is row number and c is column number. Let’s see an example. For multidimensional list 2x3 − list [2][3] Create a Multidimensional Python List Example In this example, we will learn how to create a Multidimensional List in Python. We will also iterate and print the array. # Create a Multi-Dimensional Python List mylist = [[2, 5], [10, 24, 68], [80]] print("Multidimensional List") for outList in mylist: print(outList) Output Multidimensional List ... Read More

Make an Array in Python

AmitDiwan
Updated on 16-Sep-2022 12:27:32

1K+ Views

The arrays in Python are ndarray objects. To create arrays in Python, use the Numpy library. Array is a container which can hold a fix number of items and these items should be of the same type. To work with arrays in Python, import the NumPy library. First, let us first install the Numpy library − pip install numpy Import the required Numpy library − import numpy as np Create an Array Example Let us now create an array.. The basic Numpy Array is created using an array() function in NumPy − import numpy as np # Create ... Read More

Remove Multiple Items from a List in Python

AmitDiwan
Updated on 16-Sep-2022 12:22:20

4K+ Views

To remove more than one item from a list, we can use various ways as discussed in this article. Let’s say have the following input List − ["David", "Jacob", "Harry", "Mark", "Anthony", "Steve", "Chris"] Following is the output when multiple elements “David” and “Harry” are removed − ["Jacob", "Mark", "Anthony", "Steve", "Chris"] Remove multiple items from a List Example To remove multiple items from a List, use the del keyword. The del allows you to add the items you want to delete in a range using square brackets: # Creating a List mylist = ["David", "Jacob", "Harry", "Mark", ... Read More

Remove Duplicates from a List in Python

AmitDiwan
Updated on 16-Sep-2022 12:21:39

545 Views

To remove duplicates from a List in Python, we can use various ways as discussed in this article. Remove duplicates from a list using Dictionary Example In this example, we will remove duplicates from a list using OrderedDict − from collections import OrderedDict # Creating a List with duplicate items mylist = ["Jacob", "Harry", "Mark", "Anthony", "Harry", "Anthony"] # Displaying the List print("List = ", mylist) # Remove duplicates from a list using dictionary resList = OrderedDict.fromkeys(mylist) # Display the List after removing duplicates print("Updated List = ", list(resList)) Output List = ['Jacob', 'Harry', ... Read More

Advertisements