Epython Lab
6.38K subscribers
668 photos
31 videos
104 files
1.24K 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 Epython Lab
MongoDB Basics and Setup: Your First Steps with MongoDB and VS Code : https://www.youtube.com/watch?v=nm-7rM5mnYE

Next we will share you how to create collections and read data. Stay tuned!!
❀5
Featured Projects in our Github

Check them out : https://github.com/epythonlab
❀4πŸ‘1
Forwarded from Epython Lab
New to Linux? Learn the basic Linux commands for beginners in this easy-to-follow video tutorial. Master essential commands and start navigating your Linux system like a pro! https://youtu.be/yr65ibmN6-M

Don't forget to like, share, and subscribe for more data science and machine learning tutorials! If you have any questions or suggestions for future videos, please leave them in the comments below.
❀4
Forwarded from Epython Lab
Creating and parsing XML documents in Python is a valuable skill for managing and exchanging structured data. In this tutorial, I'll cover the basics of creating XML documents and parsing them using Python's built-in XML module.

https://www.youtube.com/watch?v=WnbS90EzU0Y
❀5
Forwarded from Epython Lab (Asibeh Tenager)
#FindLongestWordLengthChallenge

Coding challenge - Return the length of the longest word in the provided sentence.
Your response should be a number.
e.g
findLongestWordLength("The quick brown fox jumped over the lazy dog") should return 6.
πŸ‘2❀1
Forwarded from Future Data Science(FDS)
#FindLongestWordLengthChallenge
Solution by @Abcdefghijklmnopqrstuvwxyz784629
def findLongestWordLength(name):
lis = name.split();
l = len(lis[0])
for i in lis:
if len(i) > l:
l = len(i)
return l;
print(findLongestWordLength("The quick brown fox jumped over the lazy dog"))
πŸ‘7
Forwarded from Epython Lab (Asibeh Tenager)
#NumberChallenge

How to put 1000000000 number like 1, 000,000,00.00?

Post your solution in the comment
Forwarded from Epython Lab (Asibeh Tenager)
What is the correct syntax to output the type of a variable or object in Python?

  
Final Results
4%
print(typeOf(x))  
9%
print(typeof x)
26%
print(typeof(x))
61%
print(type(x))
quick note.pdf
47.1 KB
Python data structures, Excel/CSV files, and MySQL in terms of storage
and manipulation:
❀3
Credit Scoring Model

Report Github Link
❀3
Streamline Real-time amharic messaging from ecommerence telegram channels (Large Language Model)

Report Github Link
❀4
Forwarded from Epython Lab (Asibeh Tenager)
βœ…TIP

Indentation is important for python programming you never miss it.

Indentation refers to the spaces at the beginning of a code line.

Where in other programming languages the indentation in code is for readability only, the indentation in Python is very important.

Python uses indentation to indicate a block of code.
Example:
for x in range (2, 5):
print x

N.B: Python will give you an error if you skip the indentation:

EXAMPLE:
for x in 5:
print x
❀6
Forwarded from Future Data Science(FDS)
❀4
Forwarded from Epython Lab
Python as an ETL tool? ETL Process Pipeline with Python: https://youtu.be/3J1D33US7NM

Test ETL Pipeline: https://youtu.be/78x6V5q34qs
πŸ‘2
Artificial Intelligence in a modern approach
Download Ebook

@epythonlab