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
Climb up the chart of development, from web, to software and games. Build your foundations and get certified. Let me help you get your first tech job.
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
PIP is a package management system that is used to install and manage Python-based software packages.
For those of you who don't know, oop stands for Object-Oriented Programming. Is python an oop, and why?
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.