Skip to main content

Procedure, and the objective experience of Python

Assignment Operation( Its totally fun programming!)
                                           One more thing in python that fascinates us is its ability to hold the values of the variable even after assignment operation.
Like say:
              a=2
        b=a
This is bound to keep the values of both a,b intact without any change.
 so doing things like:
                                print a,b
                gives #a=2,b=2
And!!
           One more important thing to remember is sequential assignment: what I mean is assignment is sequential in its nature.
 So if we have things like:
                                      a,b=b,a
 then the actual assignment format takes place. The result will be
                                        a=b 
                       b=a
Procedures: The sword of every programming language
                Yes! its function in c and c++ , method in Java which are used for modular construction and abstraction of every program. In Python, functions or the procedures form the basis of writing  module. Lets take a look at  the module writing techniques . 
                          def function_name():
                   #code lines
                   #
                   
                  The novice awkwardness of python is its indentation of code blocks and absence of curly braces->{}. However with time  as one goes down the road, it can be said that it becomes fun and enjoyable with it.
Object Orientation......The face of higher language programming
                            Yes, now we are coming  to the point. It always begins with the already known Class thing. It is done in this way:
                              class class_name:
                      def function_name(self):   
                                                #code block
                                                #....
Hold your breathe!, the self here is a way of providing access to objects form the methods.Without it,none of the methods will have access to the object itself, the object whose attributes  they are supposed to manipulate.
  As reminded from the past, we have Private and Public things to maintain. 
Private variables can be declared using, 
                                                  __(2 underscores) before function_name
                                   eg. def __inaccessible(self):
Objects can be created in the obvious manner:
 Simply, 
                 class class_name():
                #code
                #
         object=class_name()
 and it can refer to any function as:
                      object.function()
So this was just a brief intro from the many features of Python.
                                                                                      More to follow...

Comments

Popular posts from this blog

How to create a bootable USB pendrive in Linux

If it was windows, it would be much easier ...for we have the universal USB installer. In Linux, we can't use that: however, we need not worry, guys have done a great job by creating a much easier tool to do the work. The tool is called gparted. It is a nice GUI tool to do our work. So lets see how we shall do it. >Open the terminal . >Now type: sudo apt-get install gparted ......This will install the tool ...well and good if you had it from before. >Now type: sudo apt-get install-3g ( gparted installed this as default for me...just see if it did for you). >Now open the tool via: System>Administration>Gparted Partition Tool >Now you are almost done....Click the File and choose the drive for the particular USB. >Right click on the drive when it is enlisted. See Manage Flag menu and click to enable boot. >Now go to Partition menu at the top panel and format the drive as ntfs . This will keep the work as pending operation ...click the cor...

Behind the Scenes: How Generative AI Creates Music, Art, and Stories

When Machines Dream We’re living in a world where machines don’t just compute—they create. Generative AI is writing novels, composing symphonies, and painting pictures. But what’s really going on behind the screen? This post pulls back the curtain to reveal how generative AI actually creates —from writing a bedtime story to composing a lo-fi beat. Whether you're a curious creator or tech enthusiast, you’ll see the art of AI through a new lens. What is Generative AI, Really? Generative AI uses machine learning models—especially neural networks—to generate new content based on learned patterns. Trained on vast datasets, these models produce original music, images, and text based on user prompts. 1. How AI Writes Stories (e.g., ChatGPT, Claude) Step-by-step: You give a prompt: “Write a story about a lonely robot who finds a friend in the forest.” The model (like ChatGPT) draws on its training data to predict and generate the most likely next word, sentence, or paragr...

How to find the difference between two files from windows shell

Well I was just wondering how could I see the difference between two files in windows. Searching the net, I saw some softwares  that would do the job for me..But I wanted simple and fast not so sophisticated ... I found out we could do using a simple tool...fc..from the DOS prompt. FC is a command to view the difference of two files or set of files.. So the steps are: 1> go the directory where the files are.. 2>type  fc first-filename second-filename ....and there you go..You will get the result each different section divided by line of stars.. ...Its simple ...right?? I love it....The following explains the full usage method ------------------------------------------------------------------------------------------- Syntax: FC [d:][path]filename [d:][path]filename [/A][/C][/L][/Lb n] [/N][/T][/W][/(number)] for binary comparisons FC [d:][path]filename [d:][path]filename [/B][/number]  FC reports differences between the two files you specify. FC firs...