Future Data Science(FDS)
Open in Telegram
✅The first Data Science channel in Ethiopia. It was created to learn FDS. Mode of delivery:- #Research_articles, #Short_notes, #Examples, and #Exercises Tools we use:- #Python, #Pandas, #Jupyter, etc For any question or discussion use @pyDiscussion
Show moreThe country is not specifiedThe category is not specified
501
Subscribers
No data24 hours
No data7 days
No data30 days
Posts Archive
A short video tutorial to install Jupyter Notebook on Linux for Data Science
https://www.youtube.com/watch?v=5Yx6h7Mgiv0&feature=youtu.be
To all Ethiopian Orthodox believer's, happy easter.
God save us from #COVID19
Good Friday to all.
Pray to God to fight against #COVID19
God/Allah is our Medicine.
Apply health advices
The analysis shows that the death rate of the following countries are very high. Above 10,0000.
#QuarantineYourself #LearnDataScience #Bioinformatics #Python #Pandas
#COVID19 the highest death rate in the world
#DataScience #Bioinformatics #DataAnalysis #Pandas
We learn how to analysis data in future data science. You stay at home and learn new futures of Data Science.
Think this is an opportunity to be future Data Scientist.
I share you my knowledge and experience.
#QuarantineYourself #Bioinformatics #DataAnalysis #DataScience
#COVID19 Data analysis using pandas
#Ethiopia
#DataScience #Bioinformatics #DataAnalysis #Pandas #Matplotlib
Get status by country I'd
#Ethiopia
For more check https://pypi.org/project/covid/
#DataScience #Bioinformatics #PythonModule #COVID19
USE pip install covid if you are installed python 2 and pip3 install covid for python3
#Solution for #Q2
#DataScience #DataCollection
#Collectiondatatype
We will continue discussing on other collection types in next time.
Stay tuned
✅Apply health advises.
#QuarantineYourself
#Q2
Collection data types
As well as the simple types, Python has several common collection data types, tuples, lists, sets and dictionaries, that provide a means of bringing multiple items together into a container.
Can you define each of the collection data types with simple example?
Post your solution @pythonEthBot
#DataScience #DataCollection
#PreventCOVID19
#Solution for #Q1 by @oneyedking
split() function used to split string to substrings
Example :
Str = "coding with python"
Str.split(' ')
Result : "coding", "with", "python"
By @met_asploit
There are built in func
split and join
while split is used to separate a string and create a list , join is used to combine list and create a string
>>> a = ['a' , 'b' , 'c' , 'd']
>>>' '.join(a)
'a b c'
>>>b = 'hello how are you'
>>>b.split(' ')
['hello' , 'how' , 'are' , 'you']
#Q1
#DataScience #Python #String
You can split up your string into separate substrings according to the presence of whitespace. This creates a list of strings, where a 'list' is simply a container for the strings. Lists are Python objects in thier own right and we will discuss further in the next time.
In the other way we can also combine a list of strings and create a single long text.
Q: what functions we use to separate and combine strings? Explain using examples.
Post your solution @pythonEthBot
#PreventCOVID19
