Showing posts from November, 2023
Mongo db data insert

Mongo db data insert

// connect with database in the mongo db use vishalkart // single item ko insert karne ke liye use karte hai Like th…

Read Now
Comprhension in the python

Comprhension in the python

Comprehension in python :-  # python comprehension # this is called comprehension ... list comprehension ls = [ i f…

Read Now
factorial using python genrators

factorial using python genrators

Factorial program:=  def fact ( n ):      if n == 0 :          return 1      return n * fact ( n - 1 ) print (…

Read Now
Genrators in python

Genrators in python

Genratorals program := def gen ( n ):      # yield real time memory allocate kar denga .... isse hamri ram bachengi …

Read Now
Load More That is All