Python tutorial 25.07.2024

SLICING
we can hop btwn letters in the index

H e l l o m o b i l e

Positive Indexing 0 1 2 3 4 5 6 7 8 9 10
Negative Indexing -11 -10 -9 -8 -7 -6 -5 -4 -3 -2 -1

Eg1:
msg=’HelloMobile’


This content originally appeared on DEV Community and was authored by Arokya Naresh

SLICING
we can hop btwn letters in the index

        H   e   l   l   o   m   o   b   i   l   e

Positive Indexing 0 1 2 3 4 5 6 7 8 9 10
Negative Indexing -11 -10 -9 -8 -7 -6 -5 -4 -3 -2 -1

Eg1:
msg='HelloMobile'
print(msg[0:11:2]) -->2 denotes hop (i.e no. of hop inbtwn letter )
print(msg[0:11:3])

o/p
Hlooie
Hlol

Iterable-is a container of value which we can iterate by using loop

eg:
loop='Apple'
for d in loop[1:]:
print(d)

A
p
p
l
e

Here loop is that container which has values Apple.To get to know what is in that loop we use for loop which we can iterate


This content originally appeared on DEV Community and was authored by Arokya Naresh


Print Share Comment Cite Upload Translate Updates
APA

Arokya Naresh | Sciencx (2024-07-25T11:54:43+00:00) Python tutorial 25.07.2024. Retrieved from https://www.scien.cx/2024/07/25/python-tutorial-25-07-2024/

MLA
" » Python tutorial 25.07.2024." Arokya Naresh | Sciencx - Thursday July 25, 2024, https://www.scien.cx/2024/07/25/python-tutorial-25-07-2024/
HARVARD
Arokya Naresh | Sciencx Thursday July 25, 2024 » Python tutorial 25.07.2024., viewed ,<https://www.scien.cx/2024/07/25/python-tutorial-25-07-2024/>
VANCOUVER
Arokya Naresh | Sciencx - » Python tutorial 25.07.2024. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/07/25/python-tutorial-25-07-2024/
CHICAGO
" » Python tutorial 25.07.2024." Arokya Naresh | Sciencx - Accessed . https://www.scien.cx/2024/07/25/python-tutorial-25-07-2024/
IEEE
" » Python tutorial 25.07.2024." Arokya Naresh | Sciencx [Online]. Available: https://www.scien.cx/2024/07/25/python-tutorial-25-07-2024/. [Accessed: ]
rf:citation
» Python tutorial 25.07.2024 | Arokya Naresh | Sciencx | https://www.scien.cx/2024/07/25/python-tutorial-25-07-2024/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.