Posts

Showing posts from January, 2021

User Defined data structure - Python | codin india

Image
  In computer science, a data structure is a logical way of organizing data in computer memory so that it can be used effectively. A data structure allows data to be added, removed, stored and maintained in a structured manner. Python supports two types of data structures: 1. Non-primitive data types:- Python has list, set, tuples and dictionary as its non-primitive data types which can also be considered its in-built data structures. List Arrays Tuples Dictionaries 2. User-defined data structures:- Data Structures that aren't supported by python but can be programmed to reflect the same functionality using concepts supported by python are user-defined data structures. There are many data structures that can be implemented this way:- Linked List Stack Queue Tree  Graphs Hash map Linked List Data Structure:- A  Linked List  is a linear data structure, in which the elements are not stored at contiguous memory location. The elements in a linked list are linked using pointers. Python c

On Page Seo with codin india

Image
learn SEO On-Page Search Engine Optimization guide   This 9 steps On-Page Search Engine Optimization Guide will help you optimize your website pages, so they will have the best chance to get found by your target market. This guide outlines the most important factors to consider when optimizing each page on your site. This steps are listed based on importance, so don't skip a step. Also, remember  that creating new optimized content on a weekly basis is critical to achieving long-term success with SEO. Step 1 :- Choose Keywords Read the page's content and identify two keywords that are most relevant to the overall page content. Choose one primary keyword  relevant to the page's content. If you can't identify one primary keyword for a page, you'll need to create new website pages to separate the different content. If it's not clear to you what page is about, then your visitors and the search engines won't be able to understand the page

Text to Speech using python

Image
Text2speech Today's video we are going to create Text to speech using python First of all you have to install pyttsx3 library Pyttsx3- Pypl You can just write pip install pyttsx3 in your cmd or Powershell. It will start installing in your system environment. After installation, open your text editor or IDE. Import libraries Just Import pyttsx3 import pyttsx3 as pt Start engine Now it's time to start engine of pyttsx3 module. engine= pt.init() pt is the alias that we used instead of pyttsx3. we used init() method to initialize pyttsx3 library. Here engine is the variable used to start the engine. say() say() is the pyttsx3 method to say or speek the written text. engine.say("Hello World") by calling the engine.say() method we are going to make our computer able to speek