Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,151,762 members, 7,813,531 topics. Date: Tuesday, 30 April 2024 at 01:31 PM

Am Finding It Hard To Learn Python Programming. - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / Am Finding It Hard To Learn Python Programming. (1745 Views)

Common good python programming practices you should know / A Thread For Tutorial On Python Programming / Guys Where Can I Learn Python In Lagos (2) (3) (4)

(1) (Reply) (Go Down)

Am Finding It Hard To Learn Python Programming. by Nobody: 1:38pm On Mar 09, 2022
My good people of NL.

*
i got some videos on python programming last week and the tutorial was going fine as expected but i had a problem in the second chapter "FUNDAMENTALS OF PROGRAMMING" in this topic "using loops in python".since yesterday i started this loop of a topic in python,am not getting a bit of it.
*
its as if its entering one ear and coming out of the other.
*
am 17 years old and i have been offered admission to study economics at the uni but am yet to resume cos of ASUU strike and am learning python to use it for data analysis/science in the future.
*
i heard we guys studying management and social science courses might need a bit of coding skills.

how do i understand looping in python?
i would be glad if this can be moved to FP.
Re: Am Finding It Hard To Learn Python Programming. by haakeem2(m): 1:48pm On Mar 09, 2022
If you are finding it to learn....then transfer me the opportunity and i would use it wisely.
Re: Am Finding It Hard To Learn Python Programming. by centurionpapa(m): 1:51pm On Mar 09, 2022
Looping in python has to be the easiest.
names=["ade","Babs","Sola"]
for name in names:
print(name)

What's the output of this code?

1 Like

Re: Am Finding It Hard To Learn Python Programming. by Nobody: 2:02pm On Mar 09, 2022
centurionpapa:
Looping in python has to be the easiest.
names=["ade","Babs","Sola"]
for name in names:
print(name)

What's the output of this code?
THAT WOULD BE
Ade
Babs
Sola
Re: Am Finding It Hard To Learn Python Programming. by mrfizy(m): 2:38pm On Mar 09, 2022
I'm learning JavaScript and I have had times when a seemingly hard concept eventually clicked.It was like a moment of revelation.
Moral of my story:
Keep striving,it will eventually click.
Thanks.

15 Likes 1 Share

Re: Am Finding It Hard To Learn Python Programming. by Sltp: 5:45am On Mar 10, 2022
Just one week? Keep learning. Some concepts will take months to finally click

1 Like

Re: Am Finding It Hard To Learn Python Programming. by bldrkamal(m): 6:19am On Mar 10, 2022
Learn it through python animation library called manim. It will be very interactive and you will learn the concept of object oriented programming easily.

https://vocal.media/education/creating-animation-in-python-using-manim-library.
Run it in your browser through google colab as in the tutorial

1 Like

Re: Am Finding It Hard To Learn Python Programming. by Bigfredoh: 3:21pm On Mar 10, 2022
I will teach you all you need to know to get started for a small fee...If you are interested, pls contact me on this number 08037379460 either on-call or WhatsApp so that we can talk better.
Re: Am Finding It Hard To Learn Python Programming. by Jaguarspaw: 5:06pm On Mar 10, 2022
for loop: assuming you know the range of loop.
# you want to perform an action for a known number
# of times

#ex1

list_ = ['c', 'l', 'a', 'a']
for x in list_:
print(x)
>>>c
l
a
a
If you want it on the same line
print(x, end="" )
>>>class

#ex2

days_ = [1, 2, 3, 4]
for x in days_:
print(f"Number {x} is awesome" )
>>>Number 1 is awesome
Number 2 is awesome
Number 3 is awesome
Number 4 is awesome

2 Likes

Re: Am Finding It Hard To Learn Python Programming. by Jaguarspaw: 5:17pm On Mar 10, 2022
# while loop
# number of loop not known, want to perform an
# action for an unknown number of times

While True:
x = int(input())
y = x * 10
print(y)
if y == 60:
break
else:
continue

1 Like 1 Share

Re: Am Finding It Hard To Learn Python Programming. by LikeAking: 5:29pm On Mar 10, 2022
Sorry!
Re: Am Finding It Hard To Learn Python Programming. by Deicide: 10:27pm On Mar 10, 2022
Quite trying to learn python now. You are eventually going to learn it but I'll advise you start with Language like Java first. When you understand a Language like that Understanding Python would come easy to you.
Re: Am Finding It Hard To Learn Python Programming. by jbreezy: 11:45pm On Mar 10, 2022
Lol You've just used 2 days now..Keep on trying and trying..You will get it
Re: Am Finding It Hard To Learn Python Programming. by Nobody: 5:26am On Mar 11, 2022
Deicide:
Quite trying to learn python now. You are eventually going to learn it but I'll advise you start with Language like Java first. When you understand a Language like that Understanding Python would come easy to you.
can i use java for data science?
Re: Am Finding It Hard To Learn Python Programming. by digitite: 7:09am On Mar 11, 2022
IamBabsjnr:

can i use java for data science?

The recommended languages are JavaScript, R, Python and SQL. That's what I am learning.
Re: Am Finding It Hard To Learn Python Programming. by Nobody: 8:49am On Mar 11, 2022
digitite:


The recommended languages are JavaScript, R, Python and SQL. That's what I am learning.
where do u learn?
online or physical class?
Re: Am Finding It Hard To Learn Python Programming. by Deicide: 9:15am On Mar 11, 2022
IamBabsjnr:

can i use java for data science?
Yes, Just that it's not used widely so you would be limited with tools unlike the much tools you'll get if you using Python.

1 Like 1 Share

Re: Am Finding It Hard To Learn Python Programming. by airsaylongcome: 11:00am On Mar 11, 2022
centurionpapa:
Looping in python has to be the easiest.
names=["ade","Babs","Sola"]
for name in names:
print(name)

What's the output of this code?

If I had a million items I wanted to loop through I would list them out like this?!
Re: Am Finding It Hard To Learn Python Programming. by digitite: 8:13pm On Mar 11, 2022
IamBabsjnr:

where do u learn?
online or physical class?

Physical class. Mehn these guys are good. I can only learn online if I want to take international certification exams.
Re: Am Finding It Hard To Learn Python Programming. by Nobody: 9:04pm On Mar 11, 2022
digitite:


Physical class. Mehn these guys are good. I can only learn online if I want to take international certification exams.
pls where do you do your class?
Re: Am Finding It Hard To Learn Python Programming. by GreaterDC(m): 4:21pm On Mar 12, 2022
IamBabsjnr:

can i use java for data science?
Yes, with the help of some technologies like NF4J, Apache Mahout, Hadoop etc
Re: Am Finding It Hard To Learn Python Programming. by GreaterDC(m): 4:24pm On Mar 12, 2022
airsaylongcome:


If I had a million items I wanted to loop through I would list them out like this?!
That's could be slow, preferable you can iterates through numbers using the ndarray(numpy) That will be more faster for an item of millions
Re: Am Finding It Hard To Learn Python Programming. by digitite: 7:34pm On Mar 12, 2022
IamBabsjnr:

pls where do you do your class?

Owerri, IMO State. Anyone that can teach you the CONCEPT and practical application of programming is good. Things will then flow easily for you. Don't follow the bandwagon mindset, identify your area of concentration and make the programming language or technology work for you. Read updated journals or articles about what you are learning and that way, you will easy get a job, because recruiters or clients go for what makes a difference.
Re: Am Finding It Hard To Learn Python Programming. by CJust(m): 10:09pm On Mar 12, 2022
Look u can start learning programming from any language,
me i started with pascal, d topics i understand well were
Hello word & variables
if & case statement
i never understood looping, but then i still continue with other topics, it was later dat i switch to C programming then i began to learn loop and others e.t.c.

So u can skip loop,
Re: Am Finding It Hard To Learn Python Programming. by bldrkamal(m): 11:29pm On Mar 12, 2022
Python is easy so as most programming languages.
But you could learn it more easily by creating something like animation using libraries like the following tutorial:
https://engineerxp.com/creating-animation-in-python-using-manim-library/
Re: Am Finding It Hard To Learn Python Programming. by shreygautam: 7:25am On Dec 18, 2023
Learning Python may seem challenging initially, but perseverance is key. Start with basic concepts like variables, loops, and functions. Utilize online resources like tutorials and interactive platforms to practice coding. Break down complex problems into smaller tasks for better understanding. Engage with the Python community, seek help when needed, and participate in coding challenges. Consistent practice and hands-on projects enhance your skills. Consider enrolling in a structured Python course for beginners to receive guided instruction and build a strong foundation.
Re: Am Finding It Hard To Learn Python Programming. by Nazgul: 2:11pm On Apr 17
Find a tutor. You can't learn Python by watching YouTube videos alone. You need someone to put you through.
Re: Am Finding It Hard To Learn Python Programming. by shreygautam: 6:13am On Apr 23
Learning Python programming can be challenging, especially if you're new to programming or haven't used a similar language before. Python's syntax and concepts might seem unfamiliar at first, leading to confusion and frustration. However, with the right approach and resources, you can overcome these difficulties.

One common hurdle is understanding the fundamental concepts, such as variables, data types, loops, and functions. It's crucial to practice regularly and reinforce your learning with exercises and projects. Additionally, seeking help from online tutorials, forums, and communities can provide valuable insights and support.

Another aspect to consider is finding the right Python training in Noida. Look for courses that offer a structured curriculum, hands-on projects, and experienced instructors. These programs can help you grasp the concepts more effectively and provide guidance tailored to your learning needs. Remember, learning a new skill takes time and persistence, so don't get discouraged if you face challenges along the way. With dedication and the right resources, you can become proficient in Python programming.

(1) (Reply)

Please Devs, You Guys Should Stop Glamorising Tech And Programming / Django Or Node? / An INEC Voting Console Program Written In C Language

(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.