Python Pioneers: A Beginner's Guide 🇪🇹 – Telegram
Python Pioneers: A Beginner's Guide 🇪🇹
8.88K subscribers
345 photos
39 videos
24 files
61 links
Welcome to Python Pioneers: Empowering Ethiopian students to embark on their coding journey. 🚀🌐🗺📱🖥💻🖱🛰

DM 📩 : @MntsntZP
Download Telegram
Forwarded from Zaphnath Paaneah
Join our channel and embark on your coding journey with us!

👉 @python_pioneers

Gain access to free coding lessons in Amharic language. Additionally, stay updated on the latest tech news and new innovations.

Pythonን በአማርኛ እንማር!

@python_pioneers
@python_pioneers
👍211
Arranging a List

የአንድን list elements order በምንፈልገው መንገድ ማድረግ እንችላለን፣ ይሄንንም የምናረገው በእነዚህ methods ነው።

1. sort() method

In a list by default insertion order is preserved ማለትም መጀመሪያ ላይ የlistኡን element ባስቀመጥንበት ቦታ ነው የምናገኘው።

If we want to sort the elements of the list according to default natural sorting order then we should go for sort() method.

ለ ቁጥሮች default natural sorting order ascending order ነው።
ለ strings default natural sorting order alphabetical order ነው።

sort() method ለመጠቀም listኡ ተመሳሳይ type ያላቸውን elements መያዝ አለበት፣ አለበለዝያ we will get TypeError.

Syntax : 
list_name.sort()

ለምሳሌ :

yene_list = [4, 5, 3, 1, 2]
yene_list.sort()
print(yene_list)

Output : [1, 2, 3, 4, 5]

2. reverse() method

This method reverses the order of list elements.

Syntax :
list_name.reverse()

ለምሳሌ :

lela_list = [1, 4, 2, 8, 6]
lela_list.reverse()
print(lela_list)

Output : [8, 6, 4, 2, 1]

...

#Lists
#ArrangingLists

@python_pioneers
@python_pioneers
👍1
Some programming memes

Have fun😊

@python_pioneers
😁5
🚑 Scientists from USA have developed an inexpensive electric bandage that speeds up wound healing by 30%.

To activate the bandage, you just need to moisten it, and it starts delivering a weak current that stimulates cells and suppresses bacterial growth.

It's a single-use product, but it’s expected to cost just $1. However, there’s no production timeline yet as clinical trials are still ahead.


#Technology
#Tech
#News

@hitechdailynews
@python_pioneers
👍2😨1
How was your day?
Anonymous Poll
28%
😭
43%
😊
17%
😁
13%
😘
👍3
Next : Mathematical Operations on List (using List Methods)
Mathematical Operations on List (using List Methods)

አንድ list ላይ mathematical operations ለማካሄድ የምንጠቀማቸው ብዙ አይነት methods እንድሁም ብዙ እይነት functions አሉ።

Let's see them one by one...

1. len()

ይሄንን len() function የምንጠቀመው በአንድ listውስጥ ያሉትን elements ብዛት(የlistኡን length) ለማወቅ ስንፈልግ ነው።

Syntax: 
len(list_name)

ለምሳሌ :

Items = ["rubber", "pencil", "book", "pen"]
length = len(Items)

print(length)

#Output : 4

2. count() method

ይሄንን method ደግሞ የምንጠቀመው በአንድ list ውስጥ ያለ የሆነ specific element ምን ያህል occur እንዳረገ ለማወቅ ስንፈልግ ነው።

Syntax :
list_name.count(element)

ለምሳሌ :

alps = ["a", "e", "g", "a", "f", "g", "a"]

occurrence_of_a = alps.count("a")

print(occurrence_of_a)

#Output : 3


3. max()

max() function በአንድ list ውስጥ ትልቁን element return ያረጋል።

Syntax :
max(list_name)

4. min()

min() function ደግሞ በተቃራኒው የአንድን list ትንሹን element return ያረግልናል፣

Syntax :
min(list_name)

max() እና min() function በምሳሌ እንመልከት።

nums = [5, 90, 34, 65, 23, 7, 10]

print(max(nums)) #Output : 90

print(min(nums)) #Output : 5

...

#MathsOpOnLists
#Lists

@python_pioneers
👍1
Here are some multiple choice questions: Answer them by reacting for the correct ones as stated below 👇

A == 😁
B == 😭
C == 😢
D == 🤓
1. What is the result of the following operation?

list1 = [1, 2, 3]
list2 = [4, 5, 6]
result = list1 + list2

- 😁) [1, 2, 3, 4, 5, 6]

-😭) [5, 7, 9]

-😢) [(1, 4), (2, 5), (3, 6)]

-🤓) None of the above
😁8
2. What does the following Python code return?

list1 = [1, 2, 3]
result = list1 * 2

- 😁) [2, 4, 6]

-😭) [1, 2, 3, 1, 2, 3]

-😢) [1, 1, 2, 2, 3, 3]

-🤓) None of the above
😭6😁1
Nice question

In case of lists containing strings, when we use max() and min() function, they return the maximum or minimum element based on lexicographical order

ለምሳሌ:

"name" has higher lexicographic order than "age", so if we use max() for a list containing only the two, the function returns "name"

But also there's something called key, in which you specify the criteria you want to compare by

Is this helpful 👆
👍2
3. What will be the output of the following code?

numbers = [5, 10, 15, 20, 25]
print(max(numbers))


😁) 5
😭) 10
😢) 25
🤓) 20
😢6