How To Master Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ต.ค. 2024

ความคิดเห็น • 899

  • @Hallden_
    @Hallden_  3 ปีที่แล้ว +123

    I created a mini course showing how I built my crypto trading bot that you can find here: patreon.com/hallden
    I did this due to the fact that so many people have been asking me to explain the code. So if you are interested then feel free to check it out :)

    • @TechFromDan
      @TechFromDan 3 ปีที่แล้ว +1

      Please can you drop your wattsapp numer

    • @LV7agent
      @LV7agent 2 ปีที่แล้ว

      Is that bot still running?

    • @jonron3805
      @jonron3805 2 ปีที่แล้ว

      11:57 Whats the keyboard you use. Its really a good one. Would be a good to put the name of the brand and model.

  • @samienr
    @samienr 3 ปีที่แล้ว +704

    1. Figure out why you want to learn python
    2. Find out how you personally learn best
    3. Learn the fundamentals of python (the easy stuff you might want to skip)
    3a. Variables
    3b. Operators
    3c. Control flow
    3d. Functions
    3e. Data types
    3f. Loops
    An hour or two for each on TH-cam should suffice.
    4. More advanced topics (i.e. methods, classes instance variables, etc)
    5. Learn how to work with data structures (hour a day 5 days a week should suffice)
    6. Problem solving, this is a crucial process to have under your belt. Best way is doing it again and again until you “think like a programmer” - breaking a problem down to its very base and working from there.
    7. Contribute to open source projects (ex tensor flow, flask, django, keras, TH-cam-dl, face_recognition, ansible, httpie, etc) even make your own

    • @Youtube_member
      @Youtube_member 2 ปีที่แล้ว +6

      Thank you!

    • @dipler9588
      @dipler9588 2 ปีที่แล้ว +2

      LEGEND🙌 really thank you🌹🙏

    • @ra1Lgunn3r
      @ra1Lgunn3r 2 ปีที่แล้ว +2

      Thank you.

    • @RH-nk7eo
      @RH-nk7eo 2 ปีที่แล้ว +19

      I find the advice to contribute to open source projects to be pretty pointless for beginners. There is such a huge leap in understanding required to have any meaningful input into an open source project that it'll just scare people off.

    • @toxic-spammz1478
      @toxic-spammz1478 2 ปีที่แล้ว +4

      @@RH-nk7eo thats what i was thinking

  • @d4rius_
    @d4rius_ 3 ปีที่แล้ว +2136

    to all the new and old programmers: May God Bless You and be patient!

    • @eriknahmad3527
      @eriknahmad3527 3 ปีที่แล้ว +4

      @@aleumdaungongjunim5752 stop scamming

    • @ramanrao2260
      @ramanrao2260 3 ปีที่แล้ว +5

      Love and compassion

    • @SushilRaipelly
      @SushilRaipelly 3 ปีที่แล้ว +5

      Thanks❤️

    • @skylane1829
      @skylane1829 3 ปีที่แล้ว +2

      Thank you...am going to need it.

    • @azeemn1333
      @azeemn1333 3 ปีที่แล้ว +1

      ❤️❤️❤️

  • @marcos7106
    @marcos7106 3 ปีที่แล้ว +124

    Your comments on learning reminded me of R. Feynman's technique;
    "There are four steps to the Feynman Learning Technique: Choose a concept you want to learn about. Pretend you are teaching it to a student in grade 6. Identify gaps in your explanation; Go back to the source material, to better understand it."

    • @ignacioreyna1271
      @ignacioreyna1271 3 ปีที่แล้ว +4

      At first glance i thought you were talking about R, the programming language xD

    • @EyassuSEC
      @EyassuSEC 3 ปีที่แล้ว +2

      Now turn that into code and teach a computer how to do that in a loop

  • @TrixyJ
    @TrixyJ 3 ปีที่แล้ว +85

    It was fun working with you on this video. Glad everyone is enjoying it.
    This tips can also be applied in any language you want to learn in the future. 🙌
    Happy Holidays everyone.

    • @collinsa8909
      @collinsa8909 3 ปีที่แล้ว +1

      Did you write the script or come up with the video idea?

    • @dailyStewie504
      @dailyStewie504 3 ปีที่แล้ว +4

      @@collinsa8909 Yes I think so, Kalle mentioned her in the latter part of the video @14:25

  • @aarons5205
    @aarons5205 3 ปีที่แล้ว +62

    I just started a few days ago and the biggest thing so far is trying to be patient and not get ahead and overwhelm. I’m so excited to learn and try things, but I have to keep reminding myself to learn the basics and just keep going step by step! I hope this is the start of a new career path for me in the future!

    • @davidyusaku
      @davidyusaku 3 ปีที่แล้ว +1

      Same for me lol
      I just learned the very basics of PHP (even I don't fully understand Javascript yet) but whenever I saw a video about Laravel project / basically any php framework project, I got interested and/or distracted
      I haven't even learn the OOP yet 😂 it's just my thirst for knowledge sometimes make me feel over confident, y'know smth like "Hah this is easy. Next!" 🤣

    • @sammyboi6146
      @sammyboi6146 3 ปีที่แล้ว

      nice bro. any updates so far?

    • @Dop4miN
      @Dop4miN 3 ปีที่แล้ว

      probably not, most people dont work hard enough on becoming better

  • @pc2729
    @pc2729 3 ปีที่แล้ว +44

    To all beginners: You should at *MAX watch one tutorial* that explains the basics to you! The basics are pretty much what Kalle mentioned - i.e. simple Python data structures (like lists, dictonaries, tuples, sets), operators, if/else, loops, variables, functions, OOP. After that, don't focus on tutotrials anymore othewise you might get stuck in "tutorial purgatory", where you basically just copy the code from the tutorials and then realize, you can't code anything by yourself.
    If you want to learn a new framework - which you should ONLY do once you understood the basics - again, don't watch more than max one tutorial! Instead focus on reading the framework's documentation! Most frameworks come with good documentation and many include step by step tutorials that teach you everything you need to know. For example, Django has amazing documentation which no udemy or youtube tutorial could ever match in quality.
    *Finally and most importantly:* Just practice by coming up with your own little projects! The best way to learn how to code is by actually coding! This will teach you more than any tutorial or book ever could!

    • @harcovanhees394
      @harcovanhees394 3 ปีที่แล้ว

      Is there a TH-cam videolist that builds a project from scratch up to a practicle example like a website with interface and Some functionality ? That should help and motivate

    • @pc2729
      @pc2729 3 ปีที่แล้ว +1

      @@harcovanhees394 You could check out Corey Schafer's videos on Django which are pretty good: th-cam.com/video/UmljXZIypDc/w-d-xo.html
      Essentially, all of this comes from the Django documentation though, so you might want to check that out as well.

    • @Mr_natenut
      @Mr_natenut ปีที่แล้ว

      Thank u.. Funny u should mention that. I started this evening with the basics on an app I found. 30mins everyday I will go through that till I understand the basics followed by practice practice practice. I want to start practicing using my phone to practice coding after learning the basics if i can find such an app. My phone is always on me. My laptop isn't. So I might as well put it to good use...

    • @thripnixe
      @thripnixe ปีที่แล้ว

      golden comment, thank you very much!

    • @abdul-kareemuthman2484
      @abdul-kareemuthman2484 10 หลายเดือนก่อน

      ❤❤❤❤

  • @nearlyzero9849
    @nearlyzero9849 3 ปีที่แล้ว +12

    I'm 57 and started coding for the first time this year, python was my choice. Also doing some system admin now with Ubunut and Ubuntu server, but that is more a side thing. My method of learning, probably because of my age, was reading, but I soon realized there are great posts on youtube to learn python. The best book I have found is Learning Python by Mark Lutz, not everyones cup of tea I hear, but I sure like it. Excellent book. I now always a have a project on the go, small and large, as that seems to me to be the best way to learn python. Flask projects, django etc...anything just seems to force you to learn python. And now I'm glad I saw this post. Excellent advice, and very helpful. Just followed you on discord as well.

    • @blueberry44.
      @blueberry44. 8 หลายเดือนก่อน

      hey, how is your learning journey going? Are you still learning Python?

  • @lstephen
    @lstephen 3 ปีที่แล้ว +24

    You are not just a great programmer but a fantastic youtuber and a videographer as well what a package! Keep up the good work!

  • @ChewingGum113
    @ChewingGum113 3 ปีที่แล้ว +19

    Thank you very much for the tips. I have been learning Python since 2 years ago and sometimes it can feel a bit overwhelming with all the possibilities that Python could offer. Also I kept forgetting what I learn and found myself googling similar questions I have researched in the past. Right now, I try to explain and help others with Python, it kinda encourgage me to really understand and remember the implementations of Python.

  • @joshpark6498
    @joshpark6498 3 ปีที่แล้ว +183

    1 tip from someone who currently understands almost nothing about any programming language but is starting with Python: Google will always be your friend if you don't know what something is or means.

    • @eriknahmad3527
      @eriknahmad3527 3 ปีที่แล้ว +3

      Python is really good for new programmers

    • @joshpark6498
      @joshpark6498 3 ปีที่แล้ว +3

      @@eriknahmad3527 ya I figured that out, it’s easy to learn, especially if you’re good with math😂

    • @rooseveltcollins3301
      @rooseveltcollins3301 3 ปีที่แล้ว +3

      its kind of discouraged to constantly look up answers to your problems from google, the majority of the time your problem solving and developing that skill in itself first is far more valuable vs using google as a crutch

    • @joshpark6498
      @joshpark6498 3 ปีที่แล้ว

      @@rooseveltcollins3301 I said if you don’t know something. Right now I’m still learning new terms and stuff. I’m not looking things up for debugging purposes, just to know what some things mean

    • @azeemn1333
      @azeemn1333 3 ปีที่แล้ว +2

      Is duckduckgo my friend too?

  • @self.improved
    @self.improved 2 ปีที่แล้ว +2

    not going to lie, your intro told me enough about your channel that you earned my sub. thanks for the content :D

  • @hossinshail5584
    @hossinshail5584 3 ปีที่แล้ว +34

    I started learning python a year ago but I had many problems with debugging so I quet and moved to html css and js but now I will definitely start it again so thanks for your great work Kalle ❤️

    • @NazriB
      @NazriB 10 หลายเดือนก่อน

      Lies again? Ticket Master USD SGD

  • @VictorAlvarezmx
    @VictorAlvarezmx 3 ปีที่แล้ว +18

    This channel is always improving, I think Jane Tracy
    did a great contribution to the quality of this video. Keep the good work.!

  • @samuelmontypython8381
    @samuelmontypython8381 3 ปีที่แล้ว +7

    After learning Java for a year, I took a break and tried Python. Not disappointed! Took me a few weeks to get syntax down and break some Java habits, and by the end of the month, I was able to make a simple web scraper and web app. Used Django for the webapp which you can learn the basics in just a few days.
    Highly recommend Python for anyone, even if you don’t intend to use it as a career. It’s just fun and useful

  • @christianpaul5224
    @christianpaul5224 3 ปีที่แล้ว +20

    I would like to add, that every concept in your language of choice, In order to fully grasp the concept is to play with it for a moment combine it with the previous concept that you've learned and see what you can do.. that way you can enjoy coding at the same time you learned the concept.

    • @nocodeandcodeph4449
      @nocodeandcodeph4449 3 ปีที่แล้ว

      Thanks. I really love this idea. I was told that for me to learn a new language, I have to treat it as new and forget about the other language🤣.

    • @jagadishgospat2548
      @jagadishgospat2548 2 ปีที่แล้ว

      *that is good wisdom*

  • @himanshusharma-eu8lj
    @himanshusharma-eu8lj 3 ปีที่แล้ว +433

    A = " learn python "
    print(A)

    • @rohanchivukula2809
      @rohanchivukula2809 3 ปีที่แล้ว +53

      sums up my coding career so far

    • @KwakuAddoDanquah
      @KwakuAddoDanquah 3 ปีที่แล้ว +3

      You're preaching to the choir, buddy.

    • @Luka-sf3vu
      @Luka-sf3vu 3 ปีที่แล้ว +30

      Print is not a valid function, print is
      had to do it my guy, sorry

    • @mariozaldivar7802
      @mariozaldivar7802 3 ปีที่แล้ว +36

      p = "python"
      If learning_python not True:
      print(f"Start learning {p} right now!!!!!!!!!!")
      elif learning_python == True:
      print(f"Keep learning {p}! ")

    • @kubaserafin4118
      @kubaserafin4118 3 ปีที่แล้ว +3

      how dare you use upper case letters

  • @Matt-sc6gg
    @Matt-sc6gg 3 ปีที่แล้ว +39

    Wow, I needed this and I got it! Thanks Kalle! Happy Holidays! Cheers!❤🔥😊

  • @shawnhumphreys3504
    @shawnhumphreys3504 2 ปีที่แล้ว +3

    Tip for learning fundamentals, as you progress you will find there is a "easier" and "longer" way to perform a task. Learn the longer way regardless. You learn to appreciate the "easier" route and helps when you have to troubleshoot

  • @7empestx
    @7empestx 3 ปีที่แล้ว +3

    Best learning method for me is find programming assignments that get progressively more difficult then try implementing data structures. Use stack overflow for things I don't know how to do.

  • @zourdy697
    @zourdy697 3 ปีที่แล้ว +126

    learning is always been hard part when you are a self-taught programmer (a lot of pain, suffer, struggle) but eventually, you will get what you want.
    just be patient and beliefs that joy and happiness will come over.

    • @chennayaianjc3306
      @chennayaianjc3306 3 ปีที่แล้ว +1

      Ur r correct ,

    • @zourdy697
      @zourdy697 3 ปีที่แล้ว

      @Zark I don't really get into assembly, instead, C++ is terribly hard lol

    • @muhammedmustafa5725
      @muhammedmustafa5725 3 ปีที่แล้ว +1

      I am tired of being forever beginner

  • @spike119
    @spike119 3 ปีที่แล้ว +14

    This Video is a must see for all aspiring coders! A wealth of information in a little under 15 minutes. Thank you for this!

  • @balimushroom8088
    @balimushroom8088 3 ปีที่แล้ว +2

    I go thru a lot of learning python videos. I find this one really motivates me. You provide me a paths to go forward after one month stuck nothing to do with python. I'm gonna subscribe.

  • @x-alias3405
    @x-alias3405 3 ปีที่แล้ว +83

    I started learning python at a very young age, but the way I learned differed greatly from others.
    In fact, my learning approach would have very little programming. I would take notes, a lot of notes.
    I would read programming books, and memorize them, then write out code on a piece of paper.
    Even today I write code on paper, I don't know why, but it helps me.
    The point is, just because someone learns coding faster by actually doing it, doesn't mean you will too :) Find an approach that suits you.

    • @mrcrbgaming2412
      @mrcrbgaming2412 2 ปีที่แล้ว +3

      I started learning c++ on august and I’ve found this is the approach I take also.

    • @2wheelereyes521
      @2wheelereyes521 2 ปีที่แล้ว

      Thanks for the tips. Can you create a website on your own?

    • @2wheelereyes521
      @2wheelereyes521 2 ปีที่แล้ว

      Thanks for the tips. Can you create a website on your own?

    • @waititsnilson
      @waititsnilson 2 ปีที่แล้ว

      @@2wheelereyes521 in python probably not

    • @kartikchauhan2778
      @kartikchauhan2778 2 ปีที่แล้ว

      Yes I also make notes in written

  • @armaghan1196
    @armaghan1196 3 ปีที่แล้ว +2

    A LOT OF VALUE IN THIS VIDEO. YOU ARE AMAZING KALLE!

    • @kaushikrishi01
      @kaushikrishi01 3 ปีที่แล้ว

      First better watch the whole vid dude.

  • @charliesumorok6765
    @charliesumorok6765 3 ปีที่แล้ว +8

    1:23 Python is useful for making an iOS app because it allows you to make concepts faster.

  • @himanshushukla6451
    @himanshushukla6451 3 ปีที่แล้ว +295

    This was a very helpful 15 minutes

    • @himanshushukla6451
      @himanshushukla6451 3 ปีที่แล้ว

      @@kennethjudethomas2063 Yeah :)

    • @Param3021
      @Param3021 3 ปีที่แล้ว

      Bhai India m kaha se ho??

    • @himanshushukla6451
      @himanshushukla6451 3 ปีที่แล้ว

      @@Param3021 Bhai dehradun se hu

    • @kaushallyadealwis8534
      @kaushallyadealwis8534 3 ปีที่แล้ว

      @@kennethjudethomas2063 shut up yo7 don’t need to point out very simple problems you dont need to be pedantic

    • @jatinoham
      @jatinoham 3 ปีที่แล้ว

      @@kennethjudethomas2063 You missed 1 second

  • @pilifgra
    @pilifgra 3 ปีที่แล้ว +32

    I love that part when you "trying to explain" some of programming tasks to "your friend". It was cool idea, well done

  • @rohithraghuram64
    @rohithraghuram64 3 ปีที่แล้ว +4

    Awesome video Kalle and Jane. I would like more such videos in future.

  • @gameinfreak0076
    @gameinfreak0076 3 ปีที่แล้ว +5

    It was a very informative video!! Thank you Jane & Kalle to share your knowledge and information with us

  • @coltrenstarblanket6216
    @coltrenstarblanket6216 3 ปีที่แล้ว +7

    Great content. Learned alot. I just recently started learning python on codecademy, quite the noob. Content like this really helps. Really enjoying the programming community. Everyone helps each other. Not much negativity. I'm from a construction background and it's a very different environment. I'm excited haha.

  • @jiwan88
    @jiwan88 3 ปีที่แล้ว +7

    The content is awesome. This is all the beginner needs to know !!!

  • @Nedwin
    @Nedwin 3 ปีที่แล้ว +2

    One of the freshest Python talks ever! Appreciate your sharing here bro.

  • @SplitSniper7
    @SplitSniper7 3 ปีที่แล้ว +5

    Everytime I see videos like this I get super hyped to learn but always end up overwhelming myself into not going through 😅

    • @nairsreehari96
      @nairsreehari96 3 ปีที่แล้ว +2

      That's what happened to me😂. I started with c and c++ couldnt complete it. Tried Java.. java went quite well but then i didnt practice after that and i forgot most of it. Then i saw videos on youtube about web development and started learning css/php/javascript and that urge to study went away after creating couple of web page. But now i am focused on python and i want to continue learning it. Hopefully..

    • @creatorz6739
      @creatorz6739 2 ปีที่แล้ว

      @@nairsreehari96 hey did you learn python after that?
      i have started to learn python

  • @sauravpawar5251
    @sauravpawar5251 3 ปีที่แล้ว +3

    Hey kalle,
    Can you please make a short video on explaining the OOP of python like class, method, functions, etc?

  • @marcodasilva6999
    @marcodasilva6999 2 ปีที่แล้ว +1

    Thank u so much for the help bro. I was thinking about starting coding.

  • @incredgmzx
    @incredgmzx 2 ปีที่แล้ว +4

    All I can say is, if ur trying to learn, try hard and go study more then you can fit in ur brain at once.
    In 3 days of learning i already know the basic fundamentals and can make lot of diverse stuff already!

  • @jalakamkiran7392
    @jalakamkiran7392 3 ปีที่แล้ว

    I think youtube is the best resource for programming...literally it has great tutorials and most of them are free

  • @jamerson23
    @jamerson23 3 ปีที่แล้ว +12

    I'm learning python in university right now, it's crazy that there are ppl who self teach themselves this, I could never :0

    • @aryabuddha7964
      @aryabuddha7964 3 ปีที่แล้ว +2

      Its easy! Just dive into it and get started

    • @FD-zx4ol
      @FD-zx4ol 3 ปีที่แล้ว

      i used freecodecamp codecademy programming with mosh to learn and python documentation

    • @Msr94145
      @Msr94145 3 ปีที่แล้ว +3

      I have stucked to python for two weeks now! I love it! I have a very irrelevant job and i had none experience before! I have started from a complete 0!
      No teachers, no books, youtube and forums!

    • @klarnorbert
      @klarnorbert 3 ปีที่แล้ว

      If you only learn programming in university, and not in your free time, 100% you'll never get a decent job.

  • @keshavdk3080
    @keshavdk3080 3 ปีที่แล้ว +2

    Thank you for the video. This video has one of the clean and best advice everyone should note down.

  • @ofsanjay
    @ofsanjay 3 ปีที่แล้ว +4

    Python guide in 15 min great.
    10:53 love these backlight keyboard

  • @Janiecobag
    @Janiecobag 2 ปีที่แล้ว

    The comments are really enriching. As pipo text/ write through experience and thanks continue with this inspiration

  • @autonaut279
    @autonaut279 2 ปีที่แล้ว

    projects projects projects!
    >>> simple Q&A games
    >>> download and move stuff with python (just to see stretch your fingers, get a sense of how vast the scope of python is)
    >>> follow more written tutorials on the web than video tutorials. (it's the awkward little errors that teach you and help you remember what you were practicing)
    >>> most importantly, start thinking and planning a project you would like to execute.
    python is so fun, if you're getting a headache during your learning journey, you're either doing it wrong or you need to follow different instructors.

  • @theMuritz
    @theMuritz 2 ปีที่แล้ว

    Thank you for explaining the python modules/packages quickly

  • @Wiktor2802
    @Wiktor2802 3 ปีที่แล้ว +27

    My teacher:
    "Learning python isn't hard!"
    Python:
    "Learn how to learn"

    • @bayvillage5170
      @bayvillage5170 3 ปีที่แล้ว +2

      Programming is difficult -- it requires significant cognitive effort. Your teacher just doesn't remember how difficult it was for him/her.

    • @TheSourovAqib
      @TheSourovAqib 3 ปีที่แล้ว +3

      "Learn how to learn"
      NameError: name 'learn' is not defined
      just joking I understand what you meant

    • @jagadishgospat2548
      @jagadishgospat2548 2 ปีที่แล้ว +2

      @@TheSourovAqib 😂 lol

  • @Ibrahim-sz2tl
    @Ibrahim-sz2tl 3 ปีที่แล้ว +2

    Thank You ! Was searching for this kinda video

  • @AgileDeveloper-v2z
    @AgileDeveloper-v2z 3 ปีที่แล้ว +5

    Woow Kalle! I just found your channel on TH-cam, and reallylove what you are doing there! I like how clear and detailed your explanations are and the depth of knowledge you have on code! Your content really stands out and you've put so much thought into your videos. Since I run a tech education channel as well, I love to see fellow Content Creators sharing, educating, and inspiring a large global audience.
    Cheers :-)

  • @purered2475
    @purered2475 3 ปีที่แล้ว

    the intro Music is so nostalgic i use to hear this in old youtube

  • @MrBaxterrify
    @MrBaxterrify 2 ปีที่แล้ว +1

    A helpful overview of Python :) Thank you!

  • @bob-ny6kn
    @bob-ny6kn 3 ปีที่แล้ว +3

    In decades of coding (before internet, libraries were my message board), I have needed help at every step. Using online communities invariably will have your questions flooded to obscurity by points-collectors who never answer your question, are cynical at best and usually insulting. Find boards where these clowns don't have millions of points and insist you lick their butt, rather, the answers are coming from people who have just learned your same problem and want to share. Good luck, don't let bad people effect you, and keep learning.

  • @MadladGuy
    @MadladGuy 2 ปีที่แล้ว +1

    I bought the book 'Python Crash Course 2nd editon' by Eric Matthes and it really helped me. It goes with you through the basics of python and at the second half of the book the writer is going to program 3 different programs with you.
    (Sorry for bad english)

    • @ericmwai1149
      @ericmwai1149 ปีที่แล้ว

      Thanks, this helps a lot.

  • @prathamraina9445
    @prathamraina9445 3 ปีที่แล้ว +1

    one really cool course for absolute beginners stumbling across this would be python for everybody by university of Michigan taught by Charles severance on course era. its absolutely free and it helps build all the foundations, gives you projects, and explains concepts in a very simple way.
    even to the intermediate ones, it helps you understand the foundations and concepts in a very simple, useful way.
    great video Kalle. thank you so much and great script Tracy!

  • @abeercodes
    @abeercodes 3 ปีที่แล้ว +1

    when i watch your videos i feel motivated. great content bro!

  • @lucario4399
    @lucario4399 3 ปีที่แล้ว +48

    10:51 i find that type of thing most annoying while typing

    • @dielaughing73
      @dielaughing73 3 ปีที่แล้ว

      It was driving me crazy just watching

  • @johnatannakazato6011
    @johnatannakazato6011 3 ปีที่แล้ว +1

    Thank you Kalle, nice and very helpful video!

  • @arthurhyatt4664
    @arthurhyatt4664 2 ปีที่แล้ว

    Great video! I’m going to start learning python after I’m finished what I’m learning currently. Looking forward to it

  • @ankitupreti8198
    @ankitupreti8198 3 ปีที่แล้ว

    GREAT WORK MAN
    The video the script created a nice flow

  • @Asahai007
    @Asahai007 3 ปีที่แล้ว +7

    Great video! I've always been scared to start programming but I think I'm finally building up the courage to do so and thank you for this video! Definitely will check out all the resources you pointed out, keep up the awesome work!
    Also, what keyboard are you using at 11:58?
    Definitely a clean looking one!

    • @Abhinav_Nayana_Sailen
      @Abhinav_Nayana_Sailen 3 ปีที่แล้ว

      @Akshat Sahai It’s a 60% on. You can easily build one from kbdfans

  • @aadarsh_chaurasia
    @aadarsh_chaurasia 3 ปีที่แล้ว +1

    Merry Christmas Kalle ♥️❤️

  • @Diana-ze8wu
    @Diana-ze8wu 2 ปีที่แล้ว

    At 11:20. This is so true. If you can verbalize ANY skill and explain it, it will solidify in your head.

  • @ComputerScienceSimplified
    @ComputerScienceSimplified 3 ปีที่แล้ว +1

    Your content is of really good quality. Amazing job, keep it up!

  • @77Sherms
    @77Sherms 3 ปีที่แล้ว +1

    Great video. Love what you said about learning how to learn. Jane, you did a great job with the script.

  • @tinongnjong1305
    @tinongnjong1305 2 ปีที่แล้ว

    Been learning Python for close to a month now
    Got a new sub 😃

  • @danieladediran5848
    @danieladediran5848 3 ปีที่แล้ว +2

    Hey Kalle, Very good video. Kindly make a video detailing the programming languages you know and frameworks. It would be a really interesting video. Thank you😁👍🏾

  • @onkar5975
    @onkar5975 3 ปีที่แล้ว +2

    Thankyou so much for this helpful detailed video. Can you please make another video like this on how to code own machine learning or any projects from scratch by myself.

  • @danielmattos2813
    @danielmattos2813 3 ปีที่แล้ว

    the first video of yours im watching and damn do I like that intro, clean as hell

  • @lo-fi_austin
    @lo-fi_austin ปีที่แล้ว

    "Learn how you learn best"... This is something most of us don't do we want to learn something new. Thanks for pointing it out

  • @YoHo18
    @YoHo18 3 ปีที่แล้ว

    A very nice overview video. Great work and you too Jane. Nice script 👍

  • @LRD_430
    @LRD_430 3 ปีที่แล้ว

    Your videos are actually super cool! Keep it up!

  • @ezrahel
    @ezrahel 3 ปีที่แล้ว

    Jane Tracy, you did well in the script writing. Thumbs up dear

  • @DevangRPatel
    @DevangRPatel 3 ปีที่แล้ว +3

    REQUEST to create a video for:- I am learning python and there are tons of project online for beginners but what I didn't find is - how to design structure of a python project that is efficient and widely used. if you are thinking "What I mean by project structure design?", well coming for C# background - we have a solution file that may have multiple project(s) [may be of different nature], each project may have folder(s) to separate modules, and even if we look at a project for the first time we know exactly where is the starting point of that project. But these things are not clear in python, at least not to me at this point. Is there a specific name that is used for file that is starting point, other naming conventions, things to know for new python developer, etc. Can you please make a video on this topic? I would really appreciate your help.

  • @elgatito00
    @elgatito00 3 ปีที่แล้ว +11

    I SWEAR I've been waiting for this one!

  • @UwU-dx5hu
    @UwU-dx5hu 3 ปีที่แล้ว +1

    thank you so much..finally someone mentions a book

  • @amundbjerve
    @amundbjerve 3 ปีที่แล้ว +1

    There is only one way to learn any programming language, and that is to practice writing programs. The textbooks, videos, tutorials etc are just to get you started and to give you hints when you are stuck.

  • @lungelosbongakonke7019
    @lungelosbongakonke7019 4 หลายเดือนก่อน

    Thank you so much for the video and the resources.

  • @SS10818
    @SS10818 3 ปีที่แล้ว +3

    Thanks Jane!

  • @milanrbx5592
    @milanrbx5592 3 ปีที่แล้ว +2

    This helped me so much! Thank you!

  • @sulizar7600
    @sulizar7600 ปีที่แล้ว

    Dope and insightful video as always🔥🔥

  • @kittoh_
    @kittoh_ 3 ปีที่แล้ว +1

    Awesome vid!
    Btw, what keyboard is that at 10:43?

  • @kennynoel2863
    @kennynoel2863 3 ปีที่แล้ว +1

    These tips are great for learning overall.

  • @xxndgamingxx
    @xxndgamingxx 3 ปีที่แล้ว +1

    I really needed to hear this. Thanks !

  • @wranther
    @wranther 3 ปีที่แล้ว +1

    Merry Christmas to you and Jane!! -Bob...

  • @domingo2977
    @domingo2977 3 ปีที่แล้ว

    Thank you for actually explaining the technical aspects like this. Please explain more technical details about coding, I'm taking notes on everything?!

  • @t650i2
    @t650i2 ปีที่แล้ว

    My method for learning was just don't delay it like literally many people I know will say "I'll do it tomorrow" and another tomorrow until you forgot what you learned. My advice is not procrastinating at all. Do projects even if you still know the basics. Example a console program where you input a text(string) and print it when you press enter.
    Anyways goodluck and don't rush it be patient.

  • @relogbr
    @relogbr 3 ปีที่แล้ว +1

    So much valuable information. Thank you!

  • @soupnoodles
    @soupnoodles 3 ปีที่แล้ว +2

    Was very helpful, thank you!

  • @vathsan3906
    @vathsan3906 3 ปีที่แล้ว +5

    Even though I know python really well, I still click the video just because of that dope intro song ....

  • @koton_bads
    @koton_bads 3 ปีที่แล้ว +19

    I see you in my notifications, I click with no doubt.

    • @iKh4ever
      @iKh4ever 3 ปีที่แล้ว

      Me too

    • @billy-ps7jz
      @billy-ps7jz 3 ปีที่แล้ว

      @@iKh4ever hehehehe

  • @tmm9069
    @tmm9069 3 ปีที่แล้ว +2

    Ey thanks Kalle

  • @liveNews672
    @liveNews672 3 ปีที่แล้ว

    I have a done my basic and going forward for advance topics from January, next year I am going to dive completely into project's

  • @ianbdb7686
    @ianbdb7686 3 ปีที่แล้ว +1

    I can't wait to work with you all in the future 💗

  • @theumezude
    @theumezude 3 ปีที่แล้ว +1

    Great video, mate!

  • @annachan5129
    @annachan5129 3 ปีที่แล้ว +1

    thanks alot for this video... was very insightful

  • @izazsshow6261
    @izazsshow6261 ปีที่แล้ว

    your intro is really fantastic !!!

  • @ndahayokevin7626
    @ndahayokevin7626 3 ปีที่แล้ว

    I Like you Kalle, You are one of the best coding youtubers on planet

  • @Salah-YT
    @Salah-YT ปีที่แล้ว +1

    thank u so much for sharing this

  • @sihmy9870
    @sihmy9870 3 ปีที่แล้ว

    I was just looking for python videos on your channel & suddenly you uploaded this video
    Thnx Mr Hallden...

  • @ledzgogaming3179
    @ledzgogaming3179 3 ปีที่แล้ว

    Google searches for python:
    2:23 Udemy, Udacity, code cademy, coursera, treehouse
    3:12 automate the boring stuff with python

  • @nonoobott8602
    @nonoobott8602 3 ปีที่แล้ว +1

    This was really helpful. Thanks for sharing

  • @libaaxalee
    @libaaxalee 3 ปีที่แล้ว

    Python without a doubt is a essential took to learn. I am a network eng for a big cooperate company mainly work on routers, switches and firewalls on various platforms such us Juniper, Cisco, ALU, learning python will help me create scripts that would make my jobs way easier, I am beginner on python and taking a class currently and I am loving it so far.
    i = 1
    while i