Posts

Best Career Opportunities After BCom Hons.

Choosing a career after BCom precisely is the key to a successful professional life. First of all, just gaining a BCom degree isn't enough. Commerce is a vast field, which includes taxation, finance, account, banking, insurance, wealth creation, auditing, operation,etc. and one needs to know where their interest falsehoods.   BCom is one of the most popular undergraduate programme in India as it offers a range of career options. After completing BCom, one can take the traditional path of Accounting jobs, Chartered Accountancy, Company Secretary, Bank-PO examinations,etc. or conclude for unconventional options similar as fiscal threat operation, investment banking etc. One can also choose to take up tutoring career after BCom by pursuing BEd and MCom.  Career Options AfterB.Com   1. Master of Commerce (MCom)  One of the most popular choice of course after BCom is Masters in Commerce or MCom. In this course, you get to study subjects similar as account, taxat...

List and Tuples in Python

Image
In this newsletter we are able to examine key variations among the List vs Tuples and the way to use those  information structure. Lists and Tuples save one or extra gadgets or values in a particular order. The gadgets saved in a listing or tuple may be of any kind such as the not anything kind described with the aid of using the None Keyword. Lists and Tuples are comparable in maximum context however there are a few variations which we're going to locate in this newsletter. Syntax Differences Syntax of listing and tuple is barely different. Lists are surrounded with the aid of using rectangular brackets [] and Tuples are surrounded with the aid of using parenthesis (). Mutable List vs Immutable Tuples List has mutable nature i.e., listing may be modified or changed after its introduction in keeping with wishes while tuple has immutable nature i.e., tuple can’t be modified or changed after its introduction. Available Operations Lists has extra builtin characteristic than that of t...

Identifiers in Pyhton

Image
 A Python identifier is a name used to identify a variable, function, class, module or other object. An identifier starts with a letter A to Z or a to z or an underscore (_) followed by zero or more letters, underscores and digits (0 to 9). Python does not allow punctuation characters such as @, $, and % within identifiers. Python is a case sensitive programming language. Thus, Manpower and manpower are two different identifiers in Python. Here are naming conventions for Python identifiers − Class names start with an uppercase letter. All other identifiers start with a lowercase letter. Starting an identifier with a single leading underscore indicates that the identifier is private. Starting an identifier with two leading underscores indicates a strongly private identifier. If the identifier also ends with two trailing underscores, the identifier is a language-defined special name. It may be available only through public import syntax [6]. In addition we have some notation indicat...

Namespaces and Scopes in Python

Every entity in python is taken into consideration an item. We deliver a few names to each item like variable, class, and feature for identification. Often those names are called identifiers. So, the call is not anything however the identifier. All those names and wherein we use cost are saved withinside the primary reminiscence at a completely unique place. This place is called area. So the place allotted to an item call and its cost is called a namespace in python . Python additionally keeps its namespace this is called a python dictionary. All namespaces in python are like dictionaries wherein names are taken into consideration as keys, and dictionary values are the real values related to the ones names. Python Namespace Example File directories in a pc gadget are the exceptional instance of namespaces. Files can also additionally have the identical names however distinctive statistics and are saved at diverse locations. If we recognize the precise cope with of the report, we are ab...

Namespaces in Python

 Every substance in python is esteemed an object. We give some titles to every object like variable, class, and function for identification. Frequently these names are comprehended as identifiers. So, the name is nonentity but the identifier. All these appellatives and where we use value are stored in the main memory at a unique position. This position is known as space. So the position allocated to an object name and its value is known as a namespace in python. Python also maintains its namespace that's known as a python wordbook. All namespaces in python are like wordbooks in which names are considered as keys, and wordbook values are the factual values associated with those names.     Python Namespace Example   Train directories in a computer system are the stylish illustration of namespaces. Lines may have the same names but different data and are stored at colorfullocations.However, we can find the train directly, If we know the exact address of the tr...