Official Telegram Channel by Sarkari Result SarkariResult.Com
Welcome to this official Channel of Sarkari Result SarkariResult.Com - On this page you will get all the updated information on Sarkari Result website from time to time.
Last updated 5 days, 19 hours ago
?Only Current Affairs English & Hindi Medium.
Contact @GKGSAdminBot
Channel Link- https://t.me/+wytqxfcVInNjN2E1
By Chandan Kr Sah
Email- [email protected]
Must Subscribe Us On YouTube - https://youtube.com/channel/UCuxj11YwYKYRJSgtfYJbKiw
Last updated 1 year, 7 months ago
? YouTube channel link :-
https://youtube.com/c/RojgarwithAnkit
? telegram channel - @rojgaarwithankit
? telegram channel - @RojgarwithankitRailway
? RWA helpline number - 9818489147
Last updated 1 year, 7 months ago
PyTip for the day:Use the "enumerate" function to iterate over a sequence and get the index of each element.
Sometimes when you're iterating over a list or other sequence in Python, you need to keep track of the index of the current element. One way to do this is to use a counter variable and increment it on each iteration, but this can be tedious and error-prone.
A better way to get the index of each element is to use the built-in "enumerate" function. The "enumerate" function takes an iterable (such as a list or tuple) as its argument and returns a sequence of (index, value) tuples, where "index" is the index of the current element and "value" is the value of the current element. Here's an example:
```
Iterate over a list of strings and print each string with its index
strings = ['apple', 'banana', 'cherry', 'date']
for i, s in enumerate(strings):
print(f"{i}: {s}")
```
In this example, we use the "enumerate" function to iterate over a list of strings. On each iteration, the "enumerate" function returns a tuple containing the index of the current string and the string itself. We use tuple unpacking to assign these values to the variables "i" and "s", and then print out the index and string on a separate line.
The output of this code would be:
```
apple
1: banana
2: cherry
3: date
```
Using the "enumerate" function can make your code more concise and easier to read, especially when you need to keep track of the index of each element in a sequence.
Official Telegram Channel by Sarkari Result SarkariResult.Com
Welcome to this official Channel of Sarkari Result SarkariResult.Com - On this page you will get all the updated information on Sarkari Result website from time to time.
Last updated 5 days, 19 hours ago
?Only Current Affairs English & Hindi Medium.
Contact @GKGSAdminBot
Channel Link- https://t.me/+wytqxfcVInNjN2E1
By Chandan Kr Sah
Email- [email protected]
Must Subscribe Us On YouTube - https://youtube.com/channel/UCuxj11YwYKYRJSgtfYJbKiw
Last updated 1 year, 7 months ago
? YouTube channel link :-
https://youtube.com/c/RojgarwithAnkit
? telegram channel - @rojgaarwithankit
? telegram channel - @RojgarwithankitRailway
? RWA helpline number - 9818489147
Last updated 1 year, 7 months ago