Showing posts with label functions. Show all posts
Showing posts with label functions. Show all posts

11/9/22

check data type for all elements in a list

For more codes click here 

#check data type for all elements in a list


a = [1,"pease", 4, "dog"]


for i in a:

    if isinstance(i, int):

        print(f"{i} is an integer")

    elif isinstance(i, str):

        print(f"{i} is a string")

    else:

        pass


6/30/22

Python PIP

 PIP is a package management system that is used to install and manage Python-based software packages.

Python as an OOPs

 For those of you who don't know, oop stands for Object-Oriented Programming. Is python an oop, and why?

Python Function

 Function is a collection of operations which can be easily accessed throughout a program. these operation accepts a variable and passes it through the stated operations to give an output.

Blog Archive