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…
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…
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 postsNow…
Login to wordpress.com. Go to appearance tab -> Menu tab. Once you click the menu bar -> MENU STRUCTURE is visible. Click the drop down in which menu bar need…
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…
This blog explains about Python 3 List and its Example Programs by the Python Programming Language: List :- In Python programming, a list is created by placing all the items (elements) inside square brackets…
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() –…
In Python, compound data types allow you to group and manage multiple values under one variable. This makes your code cleaner, more readable, and highly efficient—especially when working with collections…
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.…
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:-…