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
https://www.youtube.com/watch?v=WnbS90EzU0Y
YouTube
Learn How to Create and Parse XML Documents in Python
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.
-------------------------…
-------------------------…
❤5
Learn Python from beginners to advanced with practical exercises with VsCode: https://youtu.be/ISv6XIl1hn0
Data Structures with Projects full tutorial for beginners
https://www.youtube.com/watch?v=lbdKQI8Jsok
OOP in Python - beginners Crash Course https://www.youtube.com/watch?v=I7z6i1QTdsw
Join #epythonlab https://t.me/epythonlab
Join https://t.me/epythonlab for more learning resources
Data Structures with Projects full tutorial for beginners
https://www.youtube.com/watch?v=lbdKQI8Jsok
OOP in Python - beginners Crash Course https://www.youtube.com/watch?v=I7z6i1QTdsw
Join #epythonlab https://t.me/epythonlab
Join https://t.me/epythonlab for more learning resources
YouTube
Python Tutorial for Beginners: Python Full Course
🚀 Learn Python for Data Science, Machine Learning, and AI!
This full Python tutorial covers everything from Python basics to advanced topics like exception handling, string methods, loops, functions, and even building a simple game.
🔹 What You Will Learn:…
This full Python tutorial covers everything from Python basics to advanced topics like exception handling, string methods, loops, functions, and even building a simple game.
🔹 What You Will Learn:…
👍4
Data Structures with Projects full tutorial for beginners
https://www.youtube.com/watch?v=lbdKQI8Jsok
https://www.youtube.com/watch?v=lbdKQI8Jsok
YouTube
How to Learn Data Structures in Python
This tutorial focuses on data structures in Python for beginners. In this tutorial, you will learn the details of data structures in Python.
Chapters:
0:00:00 Lists
22:34:06 Tuples
31:00:13 Numpy Array
40:31:25 Project1
46:40:17 Dictionary in Python
1:09:55…
Chapters:
0:00:00 Lists
22:34:06 Tuples
31:00:13 Numpy Array
40:31:25 Project1
46:40:17 Dictionary in Python
1:09:55…
❤2
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.
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"))
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
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:
and manipulation:
❤3
Streamline Real-time amharic messaging from ecommerence telegram channels (Large Language Model)
Report Github Link
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
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 Epython Lab
Python as an ETL tool? ETL Process Pipeline with Python: https://youtu.be/3J1D33US7NM
Test ETL Pipeline: https://youtu.be/78x6V5q34qs
Test ETL Pipeline: https://youtu.be/78x6V5q34qs
👍2
Forwarded from Epython Lab
😘How do you reduce complexity of Dictionary data while searching in Python?
Fore more 👉https://youtu.be/tB6VDz4kwxY
🥰🥰 Follow Epython Lab for more contents 🥰
#complexity #data #python #machinelearning
Fore more 👉https://youtu.be/tB6VDz4kwxY
🥰🥰 Follow Epython Lab for more contents 🥰
#complexity #data #python #machinelearning
YouTube
Sort Dictionary by Key and Value in Python
In this tutorial, I have practically explained how to sort dictionary data by key or value in Python.
-----------------------------------------------------------------------------------
Join this channel to get exclusive access:
https://bit.ly/363MzLo
-…
-----------------------------------------------------------------------------------
Join this channel to get exclusive access:
https://bit.ly/363MzLo
-…
❤1
Forwarded from Epython Lab
Numpy🥰 is the most popular library used to manipulate numerical data
Here is a tutorial, to perform statistical analysis of your data
👉 https://youtu.be/cb_-745LZpg
Here is a tutorial, to perform statistical analysis of your data
👉 https://youtu.be/cb_-745LZpg
YouTube
Data Manipulation with Numpy : Mean/Median/Average in Numpy Array | Statistics I
Join this channel to get access to perks:
https://bit.ly/363MzLo
In this tutorial, you will be learning about the statistics concepts of how to calculate:
- mean
- median
- and weighted average of NumPy array
#python #machinelearning #datascience #numpy…
https://bit.ly/363MzLo
In this tutorial, you will be learning about the statistics concepts of how to calculate:
- mean
- median
- and weighted average of NumPy array
#python #machinelearning #datascience #numpy…
👍1
🚀 Transforming Ethiopian Telegram E-Commerce with LLMs 🌍
https://www.linkedin.com/feed/update/urn:li:activity:7250769167136481280/
https://www.linkedin.com/feed/update/urn:li:activity:7250769167136481280/
Linkedin
Sign Up | LinkedIn
500 million+ members | Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.
👍3
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
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
➕Check out solution here:https://www.youtube.com/watch?v=K-u3vndXulg
👉Join Telegram https://t.me/epythonlab/
#python #shorts #pythontricks #epythonlab #projects
Forwarded from Epython Lab
This media is not supported in your browser
VIEW IN TELEGRAM
What does if 'name=='main': do?
Learn More Python Tricks: https://bit.ly/45QI3JX
👉Join Telegram https://t.me/epythonlab/
#python #shorts #pythontricks #epythonlab
Learn More Python Tricks: https://bit.ly/45QI3JX
👉Join Telegram https://t.me/epythonlab/
#python #shorts #pythontricks #epythonlab
❤2