Epython Lab
6.76K subscribers
633 photos
30 videos
103 files
1.16K 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
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.
👍21
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
Forwarded from Epython Lab
Day 8: Do you know the difference between parameters vs positional arguments?
Check out this tutorial https://www.youtube.com/watch?v=K-u3vndXulg
Forwarded from Epython Lab
🖥 Which are positional arguments?

Check out solution here:https://www.youtube.com/watch?v=K-u3vndXulg

👉Join Telegram https://t.me/epythonlab/

#python #shorts #pythontricks #epythonlab #projects