This means our focus keyword does not present in any subheadings, Please follow the beneath points to rectify Find the focus keyword in the page analysis tab Go to general tab, check whether the sub heading matches the keyword If it does not matches, create a subheading name which matches the keyword name Then check […]
Read MoreOnce 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 MoreFor any queries logesh@payilagam.com
Read MoreThis 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 MoreThis 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 MoreThis 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 MoreThis 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 MoreThis 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 MoreThis 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 MoreKEYWORDS, IDENTIFIER (or) RESERVED WORDS இந்தப்பதிவில் இருந்து நாம் எளியதமிழில் பைத்தான் குறிச்சொற்கள் படிக்கப்போகிறோம். Python Used Some Keywords. Example: C Language used #include keywords & Java Language used import words This words are keywords (or) reserved Words. பைத்தானில் குறைவான “குறிச்சொற்கள்” (Keywords) உள்ளன. எடுத்துக்காட்டாக முதலமைச்சர் வந்தார்! பிரதமர் வந்தார்! என்கிற வார்த்தை ஓரே ஒருவரை குறிப்பதாகும். அதுபோலத்தான் குறிச்சொற்கள்(Keywords) ஓன்றை மட்டும் குறிப்பதாகும். […]
Read More