Computer Science Related Others Courses AvailableThe Best Codder.blogspot.com
Posts

Introduction to DataTypes , (Strings, Lists, Tuples, Iterations)

2 min read

 

(Strings, Lists, Tuples, Iterations)

Strings in Python: 

A string is a sequence of characters that can be a combination of letters, numbers, and special characters. It can be declared in python by using single quotes, double quotes, or even triple quotes. These quotes are not a part of a string, they define only starting and ending of the string.  Strings are immutable, i.e., they cannot be changed. Each element of the string can be accessed using indexing or slicing operations.


# Assigning string to a variable
a = 'This is a string'
print (a)
b = "This is a string"
print (b)
c= '''This is a string'''
print (c)

Output:

This is a string
This is a string
This is a string

Lists in Python:

Lists are one of the most powerful data structures in python. Lists are sequenced data types.  In Python, an empty list is created using list() function. They are just like the arrays declared in other languages. But the most powerful thing is that list need not be always homogeneous. A single list can contain strings, integers, as well as other objects. Lists can also be used for implementing stacks and queues. Lists are mutable, i.e., they can be altered once declared. The elements of list can be accessed using indexing and slicing operations.

# Declaring a list
L = [1, "a" , "string" , 1+2]
print L
#Adding an element in the list
L.append(6)    
print L
#Deleting last element from a list
L.pop()
print L
#Displaying Second element of the list
print L[1]

The output is:  

[1, 'a', 'string', 3]
[1, 'a', 'string', 3, 6]
[1, 'a', 'string', 3]
a

Tuples in Python: A tuple is a sequence of immutable Python objects. Tuples are just like lists with the exception that tuples cannot be changed once declared. Tuples are usually faster than lists.

tup = (1, "a", "string", 1+2)
print(tup)
print(tup[1])

The output is : 

(1, 'a', 'string', 3)
a

Iterations in Python: Iterations or looping can be performed in python by ‘for’ and ‘while’ loops. Apart from iterating upon a particular condition, we can also iterate on strings, lists, and tuples.

Example 1: Iteration by while loop for a condition

i = 1
while (i < 10):
    print(i)
    i += 1

The output is: 

1
2
3
4
5
6
7
8
9 

Example 2: Iteration by for loop on the string

s = "Hello World"
for i in s:
    print(i)

The output is: 

H
e
l
l
o
 
W
o
r
l
d

Example 3: Iteration by for loop on list

L = [1, 4, 5, 7, 8, 9]
for i in L:
    print(i)

The output is: 

1
4
5
7
8
9

Example 4: Iteration by for loop for range

for i in range(0, 10):
    print(i)

The output is: 

0
1
2
3
4
5
6
7
8
9 

You may like these posts

  •  Precedence of Python OperatorsAn expression is a collection of numbers, variables, operations, and built-in or user-defined function calls. The Python interpreter can evaluat…
  •  Python Program to Check if a Number is Odd or EvenOdd and Even numbers:If you divide a number by 2 and it gives a remainder of 0 then it is known as even number, otherwise an…
  •  How to Convert Data Types in PythonPython is a dynamically typed language, so programmers might not always consider the type of each variable they create. However, the type o…
  •  Introduction to Python referencesIn Python, a variable is not a label of a value like you may think. Instead, A variable references an object that holds a value. In…
  •  Python has six standard Data TypesNumericStringListTupleSetDictionaryNumeric Data Type:-In Python, numeric data type represents the data that has a numeric value. The numeric…
  •  Associativity: If an expression contains two or more operators with the same precedence then Operator Associativity is used to determine. It can either be Left to&n…

Post a Comment

© 2025Python . The Best Codder All rights reserved. Distributed by