Social Learning Theory with Examples

Anurag Gummadi
Updated on 23-Nov-2022 09:45:12

5K+ Views

Humans have always been social animals; they have depended on others to know how to behave and have always learned from one another. All this has never been more true than in the current era, where information is accessible through social media channels.What is Social Learning Theory? Social learning theory emphasizes the importance of observing and modeling the behavior of others. It has roots in psychology and sociology and has been used to explain various human behavior, including aggression, altruism, and moral development. The basic premise of social learning theory is that people learn by observing the behavior of ... Read More

Quality Planning and Its Importance in Project Management

Anurag Gummadi
Updated on 23-Nov-2022 09:40:32

3K+ Views

Quality planning is a process that prepares the project for completing a specific task, whether it is by defining quality requirements or gathering requirements from various parties. If you don't know what your project requires and assign tasks to the wrong people, it can lead to disastrous consequences. This article will give an overview of quality planning and its importance in project management. What is Quality Planning? Quality planning is one of the most critical aspects of project management. It helps ensure that projects are done correctly and on time, meeting the needs and expectations of the customer. There are several ... Read More

Guide to Integrate Asana into Jira

Anurag Gummadi
Updated on 23-Nov-2022 09:33:06

321 Views

Asana and Jira are the market's most popular project management tools. They’re both very powerful, but they can be tricky to integrate. That’s why we created this guide− to help you integrate Asana with Jira. This guide will walk you through integrating Asana with Jira, including setting up tasks, creating issues, and managing calendars. We’ll also cover advanced features, like linking Asana tasks to Jira resources and attachments. So whether you’re a beginner or an experienced project manager, this guide is for you. Let us help you integrate Asana with Jira! What is Asana? Asana is a popular Omnipresent task ... Read More

ClickUp vs Trello: The Right Tool for You

Anurag Gummadi
Updated on 23-Nov-2022 09:12:27

242 Views

If you've never heard of ClickUp, it's a tool that allows businesses to create digital marketing campaigns. ClickUp is a great tool for any business and can help with many aspects of marketing, such as email marketing, social media, SEO, and more − all from one platform. But where does Trello fit into the mix? What is ClickUp? ClickUp is a tool that helps teams manage their workflows. It integrates with Slack and other collaboration tools, so employees can easily communicate and share tasks. ClickUp also lets teams track progress and performance. Trello is another popular tool for managing workflows. ... Read More

Meaning of Single Underscore Prefix with Python Variables

Sarika Singh
Updated on 23-Nov-2022 08:33:34

5K+ Views

Python variable name may begin with a single underscore. It functions as a convention to indicate that the variable name is now a private variable. It should be viewed as an implementation detail that could change at any time. Programmers can assume that variables marked with a single underscore are reserved for internal usage. Single underscores are advised for semi-private variables, and double underscores are advised for fully private variables. To paraphrase PEP-8; single leading underscore: a poor signal of "internal use." For instance, from M import * excludes objects with names that begin with an underscore. Syntax The syntax ... Read More

Double Underscore Prefix in Python Variables

Sarika Singh
Updated on 23-Nov-2022 08:30:59

5K+ Views

When a double underscore is added as prefix to python variables the name mangling process is applied to a specific identifier(__var) In order to avoid naming conflicts with the subclasses, name mangling includes rewriting the attribute name. Example Following is the program to explain the double underscore in Python − class Python: def __init__(self): self.car = 5 self._buzz = 9 self.__fee = 2 d = Python() print(dir(d)) Output Following is an output of the above code − ['_Python__fee', ... Read More

Print Unique Values from a List in Python

Sarika Singh
Updated on 23-Nov-2022 08:24:42

3K+ Views

List is a built-in data structure in python which functions like a dynamically sized array. Lists are created by putting elements in square brackets ‘[element 1, element 2, ….]’. Elements present in list are indexed and the indexing starts from [0]. List has the following properties − List is mutable meaning that elements can be added, removed or changed from a list after its creation. List is ordered, so adding new elements to the list will not change the order of existing elements. List allows for entry of duplicate elements since each element has a unique index. A single ... Read More

Dynamically Load a Python Class

Sarika Singh
Updated on 23-Nov-2022 08:22:09

5K+ Views

A class is a group of items. It is a logical entity with a few unique attributes and methods. For instance, if you have a class for Cricket, it should have an attribute and method like players, tournaments, toss, runs, wickets, matches, etc. Use the keyword ‘class’ to create a class. Example: Following is a simple example of a class − Create the class named ‘Python’ and give it the property a − class Python: a = 36 This article demonstrates the following different ways to dynamically load a Python class. Using getattr() function The named attribute of ... Read More

Handle Circular Dependency Between Python Classes

Sarika Singh
Updated on 23-Nov-2022 08:18:22

5K+ Views

In this article we are going to discuss how to handle the circular dependency between Python classes. First of all, let us understand what is circular dependency. When two or more modules depend on one another, this is known as a circular dependency. This is because each module is defined in terms of the other module. Following is an example of circular dependency functionE(): functionF() And functionF(): functionE() The code shown above clearly shows a circular dependency. FunctionA() calls functionB(), which depends on it, and functionB() calls functionA().There are some apparent issues ... Read More

Make a Subclass from a Super Class in Python

Sarika Singh
Updated on 23-Nov-2022 08:14:02

4K+ Views

In this article we are going to discuss how to create subclass from a super class in Python. Before proceeding further let us understand what is a class and a super class. A class is a user-defined template or prototype from which objects are made. Classes offer a way to bundle together functionality and data. The ability to create new instances of an object type is made possible by the production of a new class. Each instance of a class may have attributes connected to it to preserve its state. Class instances may also contain methods for changing their state ... Read More

Advertisements