Showing posts from June, 2023
binary to decimal in cpp

binary to decimal in cpp

// Online C++ compiler to run C++ program online #include <iostream> #include <math.h> using namespace std…

Read Now
Instance in python

Instance in python

class student:     def __init__(self,firstName,lastName):         self.firstName = firstName         self.lastName = l…

Read Now
instance and class in python

instance and class in python

class student:     no_of_record = 9     pass # instance of the class  vishal = student() lakhan = student() vishal.nam…

Read Now
class in python

class in python

class student:     pass vishal = student() vishal.name = 'Vishal usrate' vishal.std = 12 vishal.school = '…

Read Now
decoraters in python

decoraters in python

decoraters can modify the function functionality ...  # def function1(): #     print("This is the function 1"…

Read Now
Load More That is All