Skip to main content

Posts

Showing posts from September, 2017

SCRUMble ! - New Book about SCRUM

 SCRUMble ! Hello Blog Readers! Thank you for all your support and encouragement. I have something exciting for you all. I have recently written and published a new book called 'SCRUMble !'. It is currently available on pothi store. It will be soon available on Amazon and Flipkart as well. Please get your copy and do let me know your reviews. -Abhishek Sathe SCRUMble ! Written and Published by: Abhishek Sathe                                                                              Distributed by: pothi.com Order your copy now:  https://store.pothi.com/book/abhishek-sathe-scrumble/ Coming soon on Amazon and Flipkart About the book: Scrum is a framework for solving complex problems largely adapted by Software Development field. There are multiple ag...

Python 102

This post is in continuation with the previous post: Python 101. Classes in Python: A class in python is specified with keyword 'class'. Below is an example showing how to create a class: class Greet:                Message = ""         def __init__(self, Name="Abhishek"):                 self.Message = Name         def wish(self):                 print("Good Day to {0}".format(self.Message))     MyInstance = Greet() MyInstance.wish() Output: Good Day to Abhishek Objects: Variables and methods encapsulated together creates an object. In other words, an object is an instance of a class. In above example, 'MyInstance' is an object of class 'Greet'.  Class Attributes: Cla...

Python 101

What is Python? General Purpose Programming Language Created by Guido van Rossum. Open Source. Easy to integrate with C, C++, Java, .Net. What is Python used for? System Programming Database Applications Game Development Machine Learning Scientific Computing Desktop Applications GUI programming and much, much more.   Sample python code: Here is a simple python code snippet which shows a function Add. This function takes two parameters and returns their sum. Python is a case sensitive language. Also note the indentation . The main function calls the Add function inside print statement. This will output 6. #!/usr/bin/python def Add(a, b):     return a+b if __name__ ==”__main__”:     print(Add(2, 4))