Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,156,133 members, 7,829,042 topics. Date: Wednesday, 15 May 2024 at 06:03 PM

Chronicle Of A Data Scientist/analyst - Programming (124) - Nairaland

Nairaland Forum / Science/Technology / Programming / Chronicle Of A Data Scientist/analyst (333376 Views)

Chronicle Of A Data/cloud Engineer / Net Salary For A Data Analyst Or Scientist Or Web Dev / Aspiring Data Scientist. (2) (3) (4)

(1) (2) (3) ... (121) (122) (123) (124) (125) (126) (127) ... (146) (Reply) (Go Down)

Re: Chronicle Of A Data Scientist/analyst by Nobody: 8:59am On Apr 28, 2022
Pls i always get confused with these two words in python: concatenate and iterate.
Whats the difference?
Re: Chronicle Of A Data Scientist/analyst by Emmyxclusive: 9:47am On Apr 28, 2022
IamBabsjnr:
Pls i always get confused with these two words in python:
concatenate and iterate.

Whats the difference?
to concatenate means to join two or more strings while to iterate means to loop over an item a certain number of time
Re: Chronicle Of A Data Scientist/analyst by SOLARPOWER1(f): 9:50am On Apr 28, 2022
Between these two courses

Jose Portila Python for Data Scirnce and Machine Learning

And Emenrenko..... Complete Machine Learning with Python and R

Which is better and more practice oriented. Both of them are on UDEMY
Re: Chronicle Of A Data Scientist/analyst by Nobody: 9:59am On Apr 28, 2022
Emmyxclusive:
to concatenate means to join two or more strings while to iterate means to loop over an item a certain number of time
thank you very much
Re: Chronicle Of A Data Scientist/analyst by Nobody: 11:06am On Apr 28, 2022
Pls guys can you give me 5 exercises on WHILE and FOR loop each for a core beginner.
.
.
.
.
.
the concept no enter my head.
Re: Chronicle Of A Data Scientist/analyst by Hinokami: 4:55pm On Apr 28, 2022
Let me share how I understood it in lay man terms


WHILE x is lower than a certain value or condition, do something to x or any other operation.

FOR each item in a list or dictionary, do an operation

I hope this helps, works for me at least


IamBabsjnr:
Pls guys can you give me 5 exercises on WHILE and FOR loop each for a core beginner.
.
.
.
.
.
the concept no enter my head.
Re: Chronicle Of A Data Scientist/analyst by Emmyxclusive: 5:14pm On Apr 28, 2022
IamBabsjnr:

thank you very much
my pleasure
Re: Chronicle Of A Data Scientist/analyst by southsouthking(m): 5:19pm On Apr 28, 2022
Emmyxclusive:
my pleasure


Hello boss, as a newbie and an Aspiring data analyst, will this be a good buy for a Start up?

Re: Chronicle Of A Data Scientist/analyst by Emmyxclusive: 5:37pm On Apr 28, 2022
southsouthking:



Hello boss, as a newbie and an Aspiring data analyst, will this be a good buy for a Start up?
way.... more than enough, go ahead and get it if u have the money. Even a system of 4gig ram will do.

2 Likes

Re: Chronicle Of A Data Scientist/analyst by southsouthking(m): 6:29pm On Apr 28, 2022
Emmyxclusive:
way.... more than enough, go ahead and get it if u have the money. Even a system of 4gig ram will do.

Thanks boss.
Re: Chronicle Of A Data Scientist/analyst by Emmyxclusive: 7:01pm On Apr 28, 2022
IamBabsjnr:
Pls guys can you give me 5 exercises on WHILE and FOR loop each for a core beginner.
.
.
.
.
.
the concept no enter my head.
for loop is more suitable when working with sequence objects like string, list etc. In that, for every item in the list, something should be done until the list get exhausted. Eg name = "Emma".
for letter in name:
print(letter)
#output
E
m
m
a

While loop is more appropriate when u have to perform a task for as long as a certain condition is true, in this case, the condition is first declared then python check the condition and execute it, then go back and check again and executes if the condition is still valid.

n = 5
while n <=5:
print("I love python"wink
#increment
n=n+1
Pls note that u will have an infinite loop if u don't increment.
U can actually use while loop on a sequence objects too but is a bit complex
Re: Chronicle Of A Data Scientist/analyst by cochtrane(m): 7:24pm On Apr 28, 2022
southsouthking:



Hello boss, as a newbie and an Aspiring data analyst, will this be a good buy for a Start up?
It's not really about the tool, but more about your passion. How much do you really want to learn? Any tool can do
Re: Chronicle Of A Data Scientist/analyst by samdelaw(m): 7:25pm On Apr 28, 2022
Emmyxclusive:
for loop is more suitable when working with sequence objects like string, list etc. In that, for every item in the list, something should be done until the list get exhausted. Eg name = "Emma".
for letter in name:
print(letter)
#output
E
m
m
a

While loop is more appropriate when u have to perform a task for as long as a certain condition is true, in this case, the condition is first declared then python check the condition and execute it, then go back and check again and executes if the condition is still valid.

n = 5
while n <=5:
print("I love python"wink
#increment
n=n+1
Pls note that u will have an infinite loop if u don't increment.
U can actually use while loop on a sequence objects too but is a bit complex

This is so understandable! Thanks.
Its just function in python that is confusing me

1 Like

Re: Chronicle Of A Data Scientist/analyst by Emmyxclusive: 8:39pm On Apr 28, 2022
samdelaw:


This is so understandable! Thanks.
Its just function in python that is confusing me
I will send you an ebook, it's well explained there. Very easy to follow
Re: Chronicle Of A Data Scientist/analyst by 7thgod: 8:50pm On Apr 28, 2022
Emmyxclusive:
I will send you an ebook, it's well explained there. Very easy to follow

Hello.
Re: Chronicle Of A Data Scientist/analyst by Nobody: 9:44pm On Apr 28, 2022
Thank you very much.
i would show you some of my practice with it.
Emmyxclusive:
for loop is more suitable when working with sequence objects like string, list etc. In that, for every item in the list, something should be done until the list get exhausted. Eg name = "Emma".
for letter in name:
print(letter)
#output
E
m
m
a

While loop is more appropriate when u have to perform a task for as long as a certain condition is true, in this case, the condition is first declared then python check the condition and execute it, then go back and check again and executes if the condition is still valid.

n = 5
while n <=5:
print("I love python"wink
#increment
n=n+1
Pls note that u will have an infinite loop if u don't increment.
U can actually use while loop on a sequence objects too but is a bit complex
Re: Chronicle Of A Data Scientist/analyst by Nobody: 9:57pm On Apr 28, 2022
Emmyxclusive:
I will send you an ebook, it's well explained there. Very easy to follow
pls,i also need the ebook.
kareembabalola25@gmail.com
Re: Chronicle Of A Data Scientist/analyst by Emmyxclusive: 9:58pm On Apr 28, 2022
7thgod:


Hello.
Please can you send the ebook to me as well
clayj5050@gmail.com
OK, tomorrow pls
Re: Chronicle Of A Data Scientist/analyst by Emmyxclusive: 9:59pm On Apr 28, 2022
7thgod:


Hello.
Please can you send the ebook to me as well
clayj5050@gmail.com
tomorrow
Re: Chronicle Of A Data Scientist/analyst by Kenox: 10:37pm On Apr 28, 2022
Emmyxclusive:
I will send you an ebook, it's well explained there. Very easy to follow
Kindly send to me too
Kenoxdollars@gmail.com
Re: Chronicle Of A Data Scientist/analyst by samdelaw(m): 12:32am On Apr 29, 2022
Emmyxclusive:
I will send you an ebook, it's well explained there. Very easy to follow

Thanks in anticipation boss!
Re: Chronicle Of A Data Scientist/analyst by 7thgod: 9:19am On Apr 29, 2022
Emmyxclusive:
tomorrow
Seen , thanks Boss
Re: Chronicle Of A Data Scientist/analyst by Nobody: 9:33am On Apr 29, 2022
Pls rate my minor projets on a scale of 1 to 10.

Re: Chronicle Of A Data Scientist/analyst by idmicheal20: 11:05am On Apr 29, 2022
Good morning everyone.

I'm having issues with my MY SQL

The COUNT, MIN AND MAX seems not to be working. Bosses in the house please what should I do?

Re: Chronicle Of A Data Scientist/analyst by Emmyxclusive: 1:49pm On Apr 29, 2022
7thgod:

Ok Boss.
You said today
please check ur mail, I just sent it, let me know if you received.
Re: Chronicle Of A Data Scientist/analyst by 7thgod: 3:13pm On Apr 29, 2022
Emmyxclusive:
tomorrow

Please modify your post to delete my email
Re: Chronicle Of A Data Scientist/analyst by Felixitie(m): 3:31pm On Apr 29, 2022
idmicheal20:
Good morning everyone.

I'm having issues with my MY SQL

The COUNT, MIN AND MAX seems not to be working. Bosses in the house please what should I do?

Remove the comma sign before the from statement, also try using underscore to link your string or aliases together instead of using space

1 Like

Re: Chronicle Of A Data Scientist/analyst by Nobody: 5:27pm On Apr 29, 2022
Emmyxclusive:
please check ur mail, I just sent it, let me know if you received.
pls sir,i need the ebook.
kareembabalola25@gmail.com
.
.
.
.
.
thanks in advance
Re: Chronicle Of A Data Scientist/analyst by idmicheal20: 6:25pm On Apr 29, 2022
Felixitie:


Remove the comma sign before the from statement, also try using underscore to link your string or aliases together instead of using space
Thanks boss
Re: Chronicle Of A Data Scientist/analyst by nerilove(m): 7:35pm On Apr 29, 2022
Emmyxclusive:
tomorrow
PLEASE I need the ebook too: nerilove@gmail.com

Thanks
Re: Chronicle Of A Data Scientist/analyst by Emmyxclusive: 8:04pm On Apr 29, 2022
nerilove:
PLEASE I need the ebook too: nerilove@gmail.com

Thanks
sent
Re: Chronicle Of A Data Scientist/analyst by Emmyxclusive: 8:04pm On Apr 29, 2022
IamBabsjnr:

pls sir,i need the ebook.
kareembabalola25@gmail.com
.
.
.
.
.
thanks in advance
sent

(1) (2) (3) ... (121) (122) (123) (124) (125) (126) (127) ... (146) (Reply)

I Want To Learn Programming. Which Language Should I Start With?

Viewing this topic: 1 guest(s)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 32
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.