Which Linux command is used to change the owner of file?
Anonymous Poll
60%
Chmod
36%
Chown
4%
Chgrp
Forwarded from Epython Lab
YouTube
Python Tutorial Part-01 | Introduction to Python
A Python Tutorial for Beginners Part-01. In this tutorial, you will learn about the basic concepts of Python programming with practical examples.
Learn Python basics. Learn Python programming. Learn Python from Scratch.
#Subscribe #Share
Thanks for watching!
Learn Python basics. Learn Python programming. Learn Python from Scratch.
#Subscribe #Share
Thanks for watching!
π1
Data Manipulation with Numpy in Amharic
Please share it to Amharic Speakers
https://youtu.be/njj6WTGrmJk
Thanks for sharing
Please share it to Amharic Speakers
https://youtu.be/njj6WTGrmJk
Thanks for sharing
YouTube
Data Manipulation with Numpy in Amharic Part II : insert/append/delete Numpy Array | α α ααα α¨α°ααα
Join this channel to get access to perks:
https://bit.ly/363MzLo
This is data manipulation with NumPy in Amharic tutorial. In this video, you will learn about:
- insert array elements
- append array elements
- delete array elements
#python #ethiopia #numpyβ¦
https://bit.ly/363MzLo
This is data manipulation with NumPy in Amharic tutorial. In this video, you will learn about:
- insert array elements
- append array elements
- delete array elements
#python #ethiopia #numpyβ¦
π3π₯1
Statistics Part I :
In this tutorial, you will be learning about the statistics concepts of how to calculate:
- mean
- median
- and weighted average of NumPy array
https://youtu.be/cb_-745LZpg
If you would like to support #epythonlab, please send us "Thanks" gift.π
Join this channel to get exclusive access to resources:
https://bit.ly/363MzLo
#python #machinelearning #datascience #numpy
Ask your question at https://t.me/epythonlab/
Thanks for watching!
In this tutorial, you will be learning about the statistics concepts of how to calculate:
- mean
- median
- and weighted average of NumPy array
https://youtu.be/cb_-745LZpg
If you would like to support #epythonlab, please send us "Thanks" gift.π
Join this channel to get exclusive access to resources:
https://bit.ly/363MzLo
#python #machinelearning #datascience #numpy
Ask your question at https://t.me/epythonlab/
Thanks for watching!
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β¦
π3
Basics of Linear Algebra for Machine Learning Discover the Mathematical Language of Data in Python
π book
@epythonlab #mlbooks
π book
@epythonlab #mlbooks
β€4π3π₯2
β copy() vs. view() in Numpy Array
In this tutorial, you will learn about the
βdifferences and
β similarities of copy() and view() in NumPy array with example
ππΏhttps://youtu.be/fiK2uqMM_E4
ππΏIf you would like to support #epythonlab, please send us "Thanks" gift.π
Join this channel to get exclusive access to resources:
πhttps://bit.ly/363MzLo
#python #machinelearning #datascience #numpy
Ask your question at https://t.me/epythonlab/
Thanks for watching!
In this tutorial, you will learn about the
βdifferences and
β similarities of copy() and view() in NumPy array with example
ππΏhttps://youtu.be/fiK2uqMM_E4
ππΏIf you would like to support #epythonlab, please send us "Thanks" gift.π
Join this channel to get exclusive access to resources:
πhttps://bit.ly/363MzLo
#python #machinelearning #datascience #numpy
Ask your question at https://t.me/epythonlab/
Thanks for watching!
π2
βοΈHow to find matrices multiplication in Python?
πhttps://youtu.be/AVooMeQQoeg
βοΈ Let's assume matrix A and B. Matrix A has 4Γ2 dimensions and matrix B has 2Γ4 dimensions. What are the total elements of AΓB and BΓA respectively? βοΈ
π€π€Watch the above video till the end. I have explained the logic and also the way how you can find dot products in Numpy.
π₯° If you would like to support me, send me "Thanks" gift on YouTube.π
Please share this post to reach more learnersππ
β€οΈ Subscribe and Follow πΈπ
πhttps://youtu.be/AVooMeQQoeg
βοΈ Let's assume matrix A and B. Matrix A has 4Γ2 dimensions and matrix B has 2Γ4 dimensions. What are the total elements of AΓB and BΓA respectively? βοΈ
π€π€Watch the above video till the end. I have explained the logic and also the way how you can find dot products in Numpy.
π₯° If you would like to support me, send me "Thanks" gift on YouTube.π
Please share this post to reach more learnersππ
β€οΈ Subscribe and Follow πΈπ
π₯4
Given an array of integers, find the pair of adjacent elements that has the largest product and return that product.
Define a function solution(inputArray)
Example: For inputArray = [3, 6, -2, -5, 7, 3], the output should be
solution(inputArray) = 21.
@epythonlab
Define a function solution(inputArray)
Example: For inputArray = [3, 6, -2, -5, 7, 3], the output should be
solution(inputArray) = 21.
@epythonlab
π1
Flask Web Development
π book
Video playlist: https://www.youtube.com/playlist?list=PL0nX4ZoMtjYGzAtRxyP0szpmv3Yaub-0o
@epythonlab #flask
π book
Video playlist: https://www.youtube.com/playlist?list=PL0nX4ZoMtjYGzAtRxyP0szpmv3Yaub-0o
@epythonlab #flask
π7
Python Programming for Beginners
Function parameters Vs arguments
Watch "Python Tutorial Part-11 | Parameters Vs Arguments" on YouTube
https://youtu.be/WiJMTC7n6XE
Function parameters Vs arguments
Watch "Python Tutorial Part-11 | Parameters Vs Arguments" on YouTube
https://youtu.be/WiJMTC7n6XE
YouTube
Python Tutorial Part-11 | Parameters Vs Arguments
Hello everyone, in this video, you will learn the difference between function parameters and arguments.
You also learn return and pass statements in the function.
@EPYTHON LAB
0:00 Introduction to Function in Python
31:37 Python Tutorial Part-09| Functionβ¦
You also learn return and pass statements in the function.
@EPYTHON LAB
0:00 Introduction to Function in Python
31:37 Python Tutorial Part-09| Functionβ¦
π1
Given an array of integers, find the maximal absolute difference between any two of its adjacent elements.
Example: What is your solution?
For arr = [2, 4, 1, 0], the output should be = 3.
for arr = [10, 11, 13], the output should be = 2 .
Here is my solution:https://www.youtube.com/watch?v=r2e6lsXhRWE&list=PL0nX4ZoMtjYHpaL61IUwQkxfcnfkySidl&index=2
Example: What is your solution?
For arr = [2, 4, 1, 0], the output should be = 3.
for arr = [10, 11, 13], the output should be = 2 .
Here is my solution:https://www.youtube.com/watch?v=r2e6lsXhRWE&list=PL0nX4ZoMtjYHpaL61IUwQkxfcnfkySidl&index=2
YouTube
#100daysofcode | Day 2: Find Maximal Difference of Adjacent Array
Join this channel to get access to perks:
https://bit.ly/363MzLo
This is the #100daysofcode challenge. Day 2: Find the absolute difference of its two of adjacent elements in the array.
#python #machinelearning #datascience
Ask your question at https://t.me/epythonlab/β¦
https://bit.ly/363MzLo
This is the #100daysofcode challenge. Day 2: Find the absolute difference of its two of adjacent elements in the array.
#python #machinelearning #datascience
Ask your question at https://t.me/epythonlab/β¦
π3
Python Programming for Beginners in Amharic
Share it to your friends
https://www.youtube.com/watch?v=grE04nPeUJE
Share it to your friends
https://www.youtube.com/watch?v=grE04nPeUJE
YouTube
ααα°α ααααͺαα½ | Python for Absolute Beginners | String Manipulation
Day 3: This is for absolute beginners. You will learn about string manipulation in today's live session.
Day 1 Video: https://www.youtube.com/watch?v=dND_rzNfw2s&list=UUsFz0IGS9qFcwrh7a91juPg
Join this channel to get access to perks:
https://bit.ly/363MzLoβ¦
Day 1 Video: https://www.youtube.com/watch?v=dND_rzNfw2s&list=UUsFz0IGS9qFcwrh7a91juPg
Join this channel to get access to perks:
https://bit.ly/363MzLoβ¦
π1
Day 3: Determine the ticket number isLucky or not
https://www.youtube.com/watch?v=GM25orW8ehE&list=PL0nX4ZoMtjYHpaL61IUwQkxfcnfkySidl&index=3
https://www.youtube.com/watch?v=GM25orW8ehE&list=PL0nX4ZoMtjYHpaL61IUwQkxfcnfkySidl&index=3
YouTube
Day 3: Determine the Ticket Number isLucky or Not
Join this channel to get access to perks:
https://bit.ly/363MzLo
This is #100daysofcode. Day 3: Given the ticket number n, determine if it's lucky or not.
#python #machinelearning #datascience
Ask your question at https://t.me/epythonlab/
Thanks for watching!
https://bit.ly/363MzLo
This is #100daysofcode. Day 3: Given the ticket number n, determine if it's lucky or not.
#python #machinelearning #datascience
Ask your question at https://t.me/epythonlab/
Thanks for watching!
π₯2
Create your own Twitter Developer Account to explore twitter content
https://developer.twitter.com/en/portal/petition/essential/basic-info
https://developer.twitter.com/en/portal/petition/essential/basic-info
π2
How to Access Twitter Data using Twitter Developer API
Watch now: https://www.youtube.com/watch?v=jDHwRbezPw0&list=UUsFz0IGS9qFcwrh7a91juPg
Please don't forget to send sticker or thanks gift if you would like to support @epythonlab
Share it.
Watch now: https://www.youtube.com/watch?v=jDHwRbezPw0&list=UUsFz0IGS9qFcwrh7a91juPg
Please don't forget to send sticker or thanks gift if you would like to support @epythonlab
Share it.
YouTube
How to Access Twitter Data using Twitter API in Python | Twitter Data Analysis
Join this channel to get access to perks:
https://bit.ly/363MzLo
Hi, you will learn how to access Twitter content using Twitter developer API in python.
#python #twitter_api #datascience
Ask your question at https://t.me/epythonlab/
Thanks for watching!
https://bit.ly/363MzLo
Hi, you will learn how to access Twitter content using Twitter developer API in python.
#python #twitter_api #datascience
Ask your question at https://t.me/epythonlab/
Thanks for watching!
π4