How Long Does It Take to Learn Python? (And Get a Job)

How Long Does It Take to Learn Python? (And Get a Job)

Afternerd

4 года назад

917,762 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@chinmayng3421
@chinmayng3421 - 24.11.2022 21:32

I’m a civil engineer and I’m trying to learn python, fingers crossed!

Ответить
@adjk689
@adjk689 - 26.11.2022 13:31

easy and to the point. good vid. i'ts encouraging to think that it does not have to take YEARS as a beginner. Feel ready to start now,. Thanks

Ответить
@trevorsurname8153
@trevorsurname8153 - 28.11.2022 11:54

"Your job opportunities is not limited by the language you choose to learn." That settles it then, I'm going to learn Qbasic!

Ответить
@CookingwithMateo
@CookingwithMateo - 30.11.2022 17:12

Do you offer some sort of type of school from 0-5 levels?

Ответить
@ryanwinchester6644
@ryanwinchester6644 - 12.12.2022 10:42

I was in the British Army for 8 and a half years (sf 3 of those years) now have been a carpenter specializing in finish carpentry for 3 years. Loved time in the military overall and still enjoy carpentry and building now, but I’ve just started learning Python after getting curious about how programming works when I was bored one day and going down a rabbit hole of information and finding it fascinating. Hoping to learn Python well then learn other languages and look for a job in programming. I’m 30 but my back and knees feel 50 with my previous jobs and certain injuries I’ve picked up over the years and I owe it to my body to do something where I can sit down a bit more, from what I’ve seen the money is nice but honestly I just enjoy learning new stuff every time I sit down at the computer! Looking forward to my programming journey!

Ответить
@xzex2609
@xzex2609 - 17.12.2022 21:52

I am very fast learner , I have a master degree in computer and i've been away for sometime , and to be honest it take me two year for me to be happy programmer , its correct I was developing in early 6 months but it's vast , very vast and you can not save all that in your memory , so if you are in it , you are in for life and you can not take your self away , and be back where you think you was cause all things changing constantly , the thing with python is that It makes other languages so hard.

Ответить
@sparkscomputerprogramming
@sparkscomputerprogramming - 02.01.2023 16:15

great content, how do you only have 20k subscribers?

Ответить
@michael-io4hl
@michael-io4hl - 04.01.2023 05:17

Great video... Much appreciation.
Do I need mathematics to learn python?
I am a total beginner. Thanks

Ответить
@Mewmew0_02
@Mewmew0_02 - 11.01.2023 20:37

Good video. Keep going !

Ответить
@antc1611
@antc1611 - 12.01.2023 05:15

You Rock !!!
I'm just starting .
I love it this is a whole new world to me .
80% Brains
20% Computer

Ответить
@goburastero
@goburastero - 16.01.2023 22:40

Is there a free framework for developing multiplataform GUI in Python ? (Like Flutter, QT, etc)

Ответить
@DinuSirbu
@DinuSirbu - 18.01.2023 23:22

Thank you

Ответить
@jeryy3716
@jeryy3716 - 19.01.2023 00:26

Hey can uh plz tell how to find worldwide jobs of python plzzzzzzz

Ответить
@sulaimahnsereko8561
@sulaimahnsereko8561 - 22.01.2023 01:11

great job ALLAHADULILAH

Ответить
@victorofficial2392
@victorofficial2392 - 23.01.2023 21:30

Very helpful

Ответить
@achuthas2875
@achuthas2875 - 25.01.2023 16:26

informative and impressive . Great video .

Ответить
@dolla_shrey
@dolla_shrey - 31.01.2023 20:32

xtrmly helpful content

Ответить
@ikermb2377
@ikermb2377 - 01.02.2023 20:21

3 to 6 months, how many hours per day?

Ответить
@dara_1989
@dara_1989 - 02.02.2023 14:21

WHAT u can do with python ⁉️
is d first question ...

Ответить
@ravishetty1923
@ravishetty1923 - 15.02.2023 04:59

Can I learn python,at my age 30 and get job!!!..plzz suggest me

Ответить
@Jwasin3_1
@Jwasin3_1 - 02.03.2023 00:54

He’s right try learning 2 -3 programming languages

Ответить
@koukikouki6929
@koukikouki6929 - 12.03.2023 14:58

im 32 years old , is it too late for me to start learning?

Ответить
@miquelr2353
@miquelr2353 - 12.03.2023 23:04

Im on day 18 of my python course. I did not know you had different pythons lol

Ответить
@Tmahmoud5811
@Tmahmoud5811 - 23.03.2023 03:49

Awesome 👍 🎉❤

Ответить
@AlexABC-qj6ns
@AlexABC-qj6ns - 30.05.2023 19:19

1)
def square_cross(num):
if num < 4:
return "The minimum size is 4"
if (num % 2) == 1:
return "Please provide an even number"
solution = ""
for i in range(num):
if (i == 0):
solution += "*" * num + "\n"
elif (i == (num - 1)):
solution += "*" * num
else:
solution += "*" + (num - 2) * " " + "*" + "\n"

Ответить
@AlexABC-qj6ns
@AlexABC-qj6ns - 30.05.2023 19:23

2)
def custom_operator(numbers):
length = len(numbers)
output = [2 * numbers[0]]

if length > 2:
for i in range(1, length - 1):
result = sum(numbers[:i] + numbers[i+1:]) * numbers[i]
output.append(result)
output.append(2 * numbers[-1])
return output

Ответить
@AlexABC-qj6ns
@AlexABC-qj6ns - 30.05.2023 19:43

5)
def star_wars_summary(category):
classified_data = {}

while True:
for result in data['results']:
name = result['name'] if 'name' in result else result['title']
films = result['films']

for film in films:
film_data = requests.get(film).json()
film_title = film_data['title']

if film_title in classified_data:
classified_data[film_title].append(name)
else:
classified_data[film_title] = [name]

if 'next' in data and data['next']:
data = requests.get(data['next']).json()
else:
break

return classified_data

Ответить
@AlexABC-qj6ns
@AlexABC-qj6ns - 30.05.2023 19:47

3)


def create_dictionary_from_csv(filename, separator):
with open(filename, 'r') as file:
lines = file.readlines()
keys = lines[0].strip().split(separator)
dictionary = {}
for key in keys:
dictionary[key] = []
for line in lines[1:]:
values = line.strip().split(separator)
for i in range(len(keys)):
dictionary[keys[i]].append(values[i])
return dictionary

Ответить
@user-wp8mk3yg4o
@user-wp8mk3yg4o - 13.06.2023 21:00

your video was very informative for beginners.

Ответить
@paco5star
@paco5star - 27.06.2023 03:22

It took me a little over 9 months before I got my first job but I wasn’t working at the time and I was dedicated 40 hrs a week of programming

Ответить
@BS-si6pj
@BS-si6pj - 06.09.2023 11:09

I have no background in programming but I reached level 0 - 1 in roughly 2.5 weeks while practicing 6 - 4 hours a day.

Ответить
@ramo._.
@ramo._. - 03.10.2023 21:16

if i want to get an internship what should i need to know to not struggle? what level i need to be on? will it take me 6 months to learn the concepts for internships?

Ответить
@RynzarSA
@RynzarSA - 15.10.2023 00:16

how long to get a job ? = 1-learn python (7-8 MONTH) , 2- learn how to take an interview(1-2MONTH) == So around a year

Ответить
@jayr399
@jayr399 - 28.10.2023 07:27

if im learning the front end developing path...where does python come in to play? Bc i know usually its HTML, CSS, JAva, React on most coding bootcamp/self study.

How do I approach this?

my ultimate goal is to get a dev job and eventually build SaaS later on and AI etc?

Ответить
@createwithliberty
@createwithliberty - 23.11.2023 17:30

L

Ответить
@Wladyslaw1440
@Wladyslaw1440 - 12.12.2023 01:24

Been learning python for 5 or more months but I just can’t do it. I keep trying and I will keep doing it but I just can’t get passed the basics. In code wars in alright on 8KYU, but when I get to 7KYU it’s a new world, I see double modulus, millions of brackets, Jesus Christ. I need help.

Ответить
@louis20122
@louis20122 - 20.01.2024 16:24

What book or where do i learn as an accountant and not into programming?

Ответить
@bassamtarabay9723
@bassamtarabay9723 - 15.02.2024 08:52

Thank you. Great vid.

Ответить
@cutecute6471
@cutecute6471 - 03.03.2024 05:09

What are the best channels to learn Python?

Ответить
@TheApeWonder
@TheApeWonder - 03.04.2024 13:39

Thanks for this and thanks for all comments!

So starting out as a front end developer going into UX, I’m now (sort of) tired of that and web. The market is bloated with those kinds of skills and building apps has slowed down. So I stand between sharpening my React skills or simply ditch that and jump into Python. Taking a Udemy course now which is great so far. I also think JS and Python are good to know in tandem.

But here’s the crux so to speak. I’m not a genius at math but I like programming and have done so in JavaScript a fair bit. I like Python for its diversity but then again each tool for the right job, can’t use it for everything effectively I’ve been told.

So if I don’t get into ML or data science, if math is crucial there or companies require BsC in those – can Python work for cybersecurity, embedded systems, web, etc? I believe it can but is it valid to master Python, thinking long term and being relevant for hiring while looking at the market?

Web today is all HTML, CSS and JS which I’ve done quite a bit. It’s tiresome with JS and their libraries. It never ends.

(I’ve been thinking of doing cybersecurity as a career change or IoT)

Ps. I’m now 46 so I want to make a “smart switch” for the rest of my career. 😅

Ответить
@user-hj3dx2fm6q
@user-hj3dx2fm6q - 13.04.2024 11:57

RADHE RADHE JAI SHREE RAM HAR HAR MAHADEV RADHA RADHA RADHA RADHA RADHA RADHA RADHA RADHA RADHA RADHA RADHA

Ответить
@Dono0o
@Dono0o - 13.07.2024 00:13

Everyone takes different amount of time learning things and if your younger it will probably take longer

Ответить
@dukemakaveli
@dukemakaveli - 13.07.2024 14:57

Hi, Iam a none IT-based and i have zero background about IT fields, I saw a course in Udemy that gives the opportunity to learn Paython in 100 days, offering 60 hours, is it ok for me as a completely beginner to enroll in this course? Kindly advise and thanks in advance.

Ответить
@stephystuff2955
@stephystuff2955 - 27.08.2024 23:25

WHY is there a 2 & 3????😫😫😫

Ответить