Forwarded from Future Data Science(FDS)
You can choose best python IDE https://realpython.com/python-ides-code-editors-guide/
Realpython
Python IDEs and Code Editors (Guide) – Real Python
Find your perfect Python development setup with this review of Python IDEs and code editors, including recommendations and screen shots.
✅ Weekly Coding Challenge at Codwars
www.codewars.com/r/2NaN8A
www.codewars.com/r/2NaN8A
Codewars
Codewars - Achieve mastery through coding practice and developer mentorship
A coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages!
✅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
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)
#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
✅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/
⚠️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.
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
Forwarded from Future Data Science(FDS)
Our Domain is Live. This is sample screenshot that shows it is working. Check it mefitihe.et
Together we create a big and known learning platform in future.✋
#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.
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"))
Forwarded from Future Data Science(FDS)
#StringReverseChallenge
find the reverse of the given string
eg. "I love Python" then the reverse is "nohtyp evol i"
N.B: don't use any built in reverse function available.
find the reverse of the given string
eg. "I love Python" then the reverse is "nohtyp evol i"
N.B: don't use any built in reverse function available.
Forwarded from Future Data Science(FDS)
#Tips
How to search hashtag?
1. Find search button from the action bar
2. Click on the search Icon 🔍
3. Type # symbol
4. Then all hashtag elements will display below then you can scroll down and find the hashtag the word you want to find out
How to search hashtag?
1. Find search button from the action bar
2. Click on the search Icon 🔍
3. Type # symbol
4. Then all hashtag elements will display below then you can scroll down and find the hashtag the word you want to find out