Python Pioneers: A Beginner's Guide 🇪🇹 – Telegram
Python Pioneers: A Beginner's Guide 🇪🇹
8.89K 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
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
4. What will be the output of the following code?

numbers = [3, 7, 2, 9, 4]
print(len(numbers))

😁) 9
😭) 4
😢) 3
🤓) 5
🤓3
5. What will be the output of the following code?

words = ["apple", "banana", "orange", "kiwi"]
print(max(words))


😁) "apple"
😭) "banana"
😢) "orange"
🤓) "kiwi"
😭1
6. What will be the output of the following code?

words = ["cat", "sheep", "elephant", "bird"]
print(min(words, key=len))

😁) "cat"
😭) "bird"
😢) "sheep"
🤓) "elephant"
😁2🤓1