Category: Blogs

How to Create Free WordPress Site or Blog – Part 1

This blog Explain about How to create Free WordPress Site or Blog Create Free WordPress Site or Blog – Part 1 Step 1 : Visit the WordPress.com Site. https://wordpress.com/ You go to Get Started or Start Your Website Click. You see the this Page in to View . Enter the E – mail address, choose […]

Read More

File Handling Functions in Python

File Handling Functions in Python : This blog Explains File Handling Functions in Python and Examples in Here. Python File Handling: Create, Open, Append, Read, Write  Python provides an inbuilt function for creating, writing, and reading files. File Handling : The key function for working with files in Python is the open() function. The open() function takes two parameters; filename, […]

Read More

Restore the blogs of the deleted user WordPress

Once the user got deleted, the user created contents got vanished. For Example To recover the user created blogs follow the below steps: Select post tab and click all posts Now you can find the posted blogs You can find the TRASH above the blogs Select the dropdown BULK ACTIONS, select Restore and click apply […]

Read More

Error Types in Python

This blog is explains about Python error Types Python error Types: AssertionError – Raised when the assert statement fails. AttributeError – Raised on the attribute assignment or reference fails. EOFError – Raised when the input() function hits the end-of-file condition. FloatingPointError – Raised when a floating point operation fails. GeneratorExit – Raised when a generator’s […]

Read More

Python 3 List and Programs

This blog is Explains about Python 3 List and its Example Programs: List :- In Python programming, a list is created by placing all the items (elements) inside square brackets [] , separated by commas. It can have any number of items and they may be of different types (integer, float, string etc.). A list can also have another list as an item. […]

Read More

Python 3 String Methods

This blog explains about Python 3 String Methods and Example programs String Methods capitalize() – Converts the first character to upper case. capitalize() – Converts the first character to upper case. casefold() – Converts string into lower case. center() – Returns a centered string. count() – Returns the number of times a specified value occurs in a string. encode() – Returns […]

Read More

Compound data types in Python

This blog explains about compound data types in Python. Compound Data Types:  * List * Dictionaries * Tuples * Sets List: A list is an array of objects. An object can be an integer,a string,float or other things. Example: mylist = [“John”, “Smith, 29] PYTHON LIST PROPERTIES Lists are ordered. Lists can contain any arbitrary objects. List elements […]

Read More

Python Mutable and Immutable data types

This blog Explains about python Mutable and Immutable data types. Mutable vs Immutable Objects in Python. … Simple put, a mutable object can be changed after it is created, and an immutable object can’t. Objects of built-in types like (int, float, bool, str, tuple, unicode) are immutable. Objects of built-in types like (list, set, dict) are mutable. Collections in Python are containers that […]

Read More

While Loop in Python

This Blog Explains about Python While Loop and example programs While Loop :- *With the while loop we can execute a set of statements as long as a condition is true. Syntax:- The syntax of a while loop in Python programming language is while expression: statement(s) *While loop, test expression is checked first. *The body of the loop is […]

Read More