Author Archives: Vikram Singh

About Vikram Singh

hello everyone my name is vikram singh . I have study in Rajasthan university . I will providing all the detail of computer and its use . I will providing latest technology also.

python exception

Python Exception-: An exception is an object generated automatically by Python functions with a raise statement. After the object is generated the raise statement which raises an exception, causes execution of the Python program to proceed in a manner different from what would normally occur. Instead of proceeding with the next statement after the raise or… Read More »

functions in python

Functions in Python-: Functions are the most important aspect of an application. A function can be defined as the organised block of reusable code which can be called whenever required. A function is a block of organised, reusable code that is used to perform a single related action. In other words we can say that the… Read More »

loops in python

Looping in Python-: Python provides a complete set of control-flow elements, with loops and conditionals. Sometimes we may need to alter the flow of the program. The execution of a specific code may need to be repeated several numbers of times. Like any other language Python has 3 type Loops While Loops For Loops If else loops… Read More »

dictionary python

Dictionary Python-: Dictionaries are powerful data structures, used for many purposes even within Python itself. Dictionary keys must be immutable, but any immutable object can be a dictionary key. Using keys means accessing collections of data more directly and with less code than many other solutions. Python’s name for associative arrays or maps which it implements… Read More »

format string python

Python Format String Method-: Python strings have powerful text-processing features, including searching and replacing, trimming characters, and changing case.Strings are immutable they can not be changed in place.Operations that appear to change strings actually return a copy with the changes. We know that this is the part of string. we can format strings in Python 3 in… Read More »

python string

Python String-:  Strings can be created by enclosing the character or the sequence of characters in the quotes. Python allows us to use single quotes, double quotes, or triple quotes to create the string.For example str=” welcome in python” String Method in Python-: Most of the Python string methods are built into the standard Python string class… Read More »