Skip to main content

Posts

Showing posts with the label #ManikantaGuptha

Python String.

  Innomatics Research Labs  Im a innomatics student, this is for innomatics research labs notes (the best institute of hyderabad) once search in google, course = data science and full stack development Innomatics Research Labs  is a pioneer in  “Transforming Career and Lives”  of individuals in the Digital Space by catering advanced training on  IBM Certified Data Science , Python, IBM Certified Predictive Analytics Modeler, Machine Learning, Artificial Intelligence (AI),  Full-stack web development , Amazon Web Services (AWS), DevOps, Microsoft Azure, Big data Analytics,   Digital Marketing , and Career Launching program   for students  who are willing to showcase their skills in the competitive job market with valuable credentials, and also can complete courses with a certificate. Strings: strings are a sequence or a char, enclosed in qoutes. creating a string a string can be created by  encloing a char or sequence of chars  ...

Understanding Slicing, Indexing, and Data Types and Conditional statements in Python (blog).

Understanding Slicing, Indexing, and Data Types in Python and Conditional statements (blog) Python is a popular programming language that is widely used in a variety of applications, from web development to scientific computing. In this blog post, we will focus on some key concepts in Python, namely slicing, indexing, data types, and conditional statements. Slicing and Indexing Slicing and indexing are two fundamental concepts in Python that are used to access and manipulate elements in lists, tuples, and strings. Let's start by looking at indexing. Indexing Indexing refers to accessing a specific element in a list, tuple, or string. In Python, indexing starts at 0, so the first element of a sequence has an index of 0, the second element has an index of 1, and so on. Here's an example: my_list = [1, 2, 3, 4, 5] print (my_list[0]) # Output: 1 print (my_list[1]) # Output: 2 In the example above, we define a list ' my_list' and access the first and second elements using...