Epython Lab
6.32K subscribers
674 photos
31 videos
104 files
1.26K links
Welcome to Epython Lab, where you can get resources to learn, one-on-one trainings on machine learning, business analytics, and Python, and solutions for business problems.

Buy ads: https://telega.io/c/epythonlab
Download Telegram
Forwarded from Deleted Account
I am very happy. I have received Thank you card and Sticker From Raspbery pi. I have participating international translation volunteering at Raspbery pi in UK. Amharic is one of the languages need translation, reviewing and testing.
Forwarded from Future Data Science(FDS)
10 reasons to learn Python in 2019

Python is a high-level, interpreted, general-purpose programming language that supports both object-oriented programming and structured programming. It is quite versatile and offers a lot of functionalities using standard libraries which allows the easy implementation of complex applications.
https://www.geeksforgeeks.org/10-reasons-to-learn-python-in-2019/amp/
βœ…Coding challenge
Let N is Natural number greater than or equal to 1.

❔Print all prime numbers in between 1 and N.
Input 9

Output: 2 3 5 7
Post Solution
https://t.me/joinchat/H8JEqEojXCb0mUfnlAqbVA
Forwarded from Future Data Science(FDS)
Python Tutorial | Python Functions and Functional Programming

https://morioh.com/p/8a40c3345286
prime.py
402 B
βœ…Solution for #Prime_number_challenge
Forwarded from Deleted Account
Result:
2 3 5 7
#NumpyArrayChallenge

βœ…Create python code to save Numpy Array to txt file and then read the file

N.B. the purpose of this challenge is to learn how to save large numpy array to file and then use for machine learning.

Input ([[1, 6, 3, 4], [2, 3, 4,6],[7,8,9,10], [89, 67, 68, 90]])

Expected output:
1 6 3 4
2 3 4 6
7 8 9 10
89 67 68 90

Post your solution https://t.me/joinchat/H8JEqEojXCb0mUfnlAqbVA
Forwarded from Future Data Science(FDS)
Dear all, try our learning platform beta version. We will start the course next week

⚠️No Database is created in the server right now. It is not functional. Wait till we will fully publish it.

https://www.mefitihe.et/
Forwarded from Future Data Science(FDS)
#Tips

Why NumPy is faster than array list?

βœ…Size:- Numpy data structures take up less space

βœ…Performance:- they have a need for speed and are faster than lists

βœ…Functionality: - SciPy and NumPy have optimized functions such as linear algebra operations built in.

βœ…Memory:- The main benefits of using NumPy arrays should be smaller memory consumption and better runtime behavior. 
πŸ‘1
numpy.py
280 B
βœ…Solution for
#NumpyArrayChallenge