Skip to content

Instantly share code, notes, and snippets.

View karanjagota's full-sized avatar
🏠
Working from home

karan jagota karanjagota

🏠
Working from home
View GitHub Profile
@karanjagota
karanjagota / datatype.py
Created June 10, 2019 09:15
gist for my medium blogs
## I am simply creating a list and printing out the type of indivisual elements in the list ..
List = [1,2.0,"Hello World",True,[1,2,3,4,5],{'key':'value'}]
# I am using for in loop because the size of the list is fixed ..
for element in List:
print(type(element))
# or you can also use list compreshension
elements = [type(element) for element in List]
print(elements)