CODELLIGENT
CODELLIGENT
  • 31
  • 167 074
Classes and Objects in Python Made Easy | Python Made Easy Series | Codelligent
In this video of our Python series, you will learn what are classes and objects which are the basics of Object Oriented Programming. You will learn how we can create a class and its objects in Python.
The topics being covered:
00:28 - What are Classes and Objects?
02:04 - How to create a simple Class and its Objects in Python?
06:00 - Creating a meaningful Class including __init__() method
10:30 - Creating instance Functions
15:20 - Deleting an object
16:34 - Significance of __str__() method in a Python Class
19:12 - Subscribe
You can find the example code files here:
github.com/kajin88/codelligent_python/blob/c2fb4f1d9b9327dff5340b42d5a1842cff430903/6.%20Classes%20and%20Objects/simpleClass.py
If you are new to Python, start the series from,
czcams.com/video/O-8UVPcgebU/video.htmlsi=6E0hPVdAN-7xYsk3
If you found this video helpful don’t forget to hit the Like button! ðŸ‘ðŸ¼
If you wish to join us for future learning, do Subscribe this channel and hit the Bell icon to get the future video notifications! 📣
#python #pythonprogramming #pythontutorial #pythonforbeginners #codelligent #programming #coding
-----------------------------------------------------------------------------------------
We believe in - "Knowledge increases by sharing!!"
Who are we?
We are a bunch of IT professionals who love to teach apart from our regular coding work! 👬👫
Why this Channel?
In our career, we have noticed that many new programmers get confused while coding, even though they are aware of that concept. We help them understand the concept in our office. 🤗
So, we thought why not share these concepts in the same easy to understand way to the whole world.
Let every one who is starting their coding journey get to learn and become a better programmer! 😊
We have taught many people offline, and now trying to make an online presence to help wider audience. 💖
Let's Code!
#LoveForCoding #LoveForTeaching #Codelligent #LetsCode #India
-----------------------------------------------------------------------------------------
Thumbnail background image credit: www.freepik.com
zhlédnutí: 39

Video

Modules and Packages in Python Made Easy | Python Made Easy Series | Codelligent
zhlédnutí 51Před měsícem
In this video of our Python series, you will learn what are modules and Packages in Python. You will also learn how a module can be imported into the code in various ways, some of built-in modules of Python and how you can create your own packages. The topics being covered: 00:22 - What are Modules in Python? 01:00 - Creating a new module 02:34 - Simple Import of the module 03:45 - Renaming the...
Exception Handling in Python Made Easy | Python Made Easy Series | Codelligent
zhlédnutí 70Před měsícem
In this video of our Python series, you will learn what are the Exception Handling concepts available in Python and how to use them in real world programming to handle the runtime exceptions. The topics being covered: 00:21 - What are Exceptions? 01:17 - Various exception handling blocks in Python 03:46 - Code demo begins 05:26 - Exception handling with try...except 07:00 - Multiple except bloc...
Arbitrary & Arbitrary Keyword Arguments in Python Made Easy | Python Made Easy Series | Codelligent
zhlédnutí 28Před měsícem
In this video of our Python series, you will learn what are arbitrary arguments and arbitrary keyword arguments when working with functions in Python. You will also learn how to call a simple function with the keyword arguments or named parameters. The topics being covered: 00:26 - Code demo begins 01:23 - Arbitrary Arguments 03:51 - Mixing normal and arbitrary arguments 05:50 - Keyword Argumen...
Functions in Python Made Easy | Python Made Easy Series | Codelligent
zhlédnutí 26Před měsícem
In this video of our Python series, you will learn what are functions and how you define one in Python. You will also see various aspects related to the functions, which are a must for you to know if you are learning Python programming! The topics being covered: 00:23 - What are functions? 01:51 - Code demo begins 04:19 - Parameterised function 05:57 - Parameters vs Arguments 07:10 - Multiple p...
Mixed Collections in Python made easy! | Python Made Easy Series | Codelligent
zhlédnutí 28Před 2 měsíci
In continuation to the video series about Python collections, in this video we will be mixing Lists, Tuples, Sets and Dictionaries to make a very complicated collection. And then we will see how we can retrieve data from deep inside that collection. This will help to make the understanding about the Python collections even stronger! The topics being covered: 00:33 - Building the complicated col...
Sets in Python Made Easy | Python Made Easy Series | Codelligent
zhlédnutí 20Před 2 měsíci
In this video of our Python series, you will learn the last collection in Python - Sets. The topics being covered: 00:25 - What are Sets? 01:45 - Code demo starts 03:58 - Duplicate with Boolean data 04:37 - Accessing data from Set 05:52 - Adding items into Set 06:33 - Remove vs Discard with Set 08:43 - Update() with Set 10:38 - Union, Intersection & Difference 13:52 - Subset and Superset You ca...
Dictionaries in Python Made Easy | Python Made Easy Series | Codelligent
zhlédnutí 43Před 2 měsíci
In this video of our Python series, you will learn Dictionaries which is one of the collections available in Python. The topics being covered: 00:22 - What are Dictionaries? 01:35 - Code demo starts 03:31 - Dictionary with different data types 07:24 - The .get() method and .get() with default value 09:35 - Checking if a Key exists in Dictionary 08:17 - Methods of Tuples 11:06 - Getting all Item...
Tuples in Python Made Easy | Python Made Easy Series | Codelligent
zhlédnutí 35Před 2 měsíci
In this video of our Python series, you will learn the Tuples which is one of the collections available in Python. The topics being covered: 00:21 - What are Tuples? 01:17 - Code demo starts 02:49 - Tuple with a single element 04:09 - Tuple Slicing 06:40 - Converting Tuples to List & vice-versa 08:17 - Methods of Tuples 10:10 - Unpacking a Tuple 11:12 - When to use Tuple? You can find the examp...
Lists in Python Made Easy | Python Made Easy Series | Codelligent
zhlédnutí 60Před 2 měsíci
In this video of our Python series, you will learn the Lists which is one of the collections available in Python. The topics being covered: 00:22 - What are Lists? 01:16 - Code demo starts 05:02 - Functions related to List 13:50 - Negative Indexing 15:59 - Ways you can Copy a List 18:15 - List Slicing 21:38 - Joining Lists 24:00 - List Comprehension You can find the example code file here: gith...
Usage of Control Flow Statements in Python made easy! | Python Made Easy Series | Codelligent
zhlédnutí 119Před 3 měsíci
In this video of our Python series, you will strengthen the knowledge about control flow statements which we saw in our previous video. We will use if...elif..else, while loop and break, to build up a small logic. The topics being covered: 00:17 - What are we building in this video? 00:46 - Code Demo You can find the example code file here: github.com/kajin88/codelligent_python/blob/a51cafcfcc4...
Control Flow in Python made easy! | Python Made Easy Series | Codelligent
zhlédnutí 75Před 3 měsíci
In this video of our Python series, you will learn how you can control the flow of the code execution with the help of if...elif..else, while loop, for loop, break and continue. The topics being covered: 00:05 - Topics covered in the video 04:16 - if...elif...else 12:56 - while loop 14:54 - for loop 21:00 - for loop with range() 23:50 - break 25:11 - continue 27:44 - else with loops 30:00 - nes...
Introduction to Python made easy! | Python Made Easy Series | Codelligent
zhlédnutí 80Před 3 měsíci
In this first video of our Python series, you will learn the introduction of Python and some of the basic concepts, with the help of some code. The topics being covered: 00:26 - Intro 01:18 - Comparison with other popular languages 03:43 - Python Installation 06:29 - Various programming interfaces : IDLE shell, python.org Shell, Thonny IDE 08:08 - Variables in Python 08:57 - Operators 13:25 - O...
CONST and READONLY in C# .Net made easy! | When to use const and when to use readonly? | Codelligent
zhlédnutí 234Před 8 měsíci
In this video you will learn what are const and readonly keywords in C#.Net with the help of some code. This will help to clear the concept of when to const and when to use readonly. The topics being covered: 00:00 - Intro 00:17 - Explanation 01:35 - Code Demo If you found this video helpful don’t forget to hit the Like button! If you wish to join us for future learning, do Subscribe this chann...
Obsolete Methods in C# .Net made easy! | How to use it in real world coding? | Codelligent
zhlédnutí 215Před 8 měsíci
Obsolete Methods in C# .Net made easy! | How to use it in real world coding? | Codelligent
User Defined Exceptions in C# .Net made easy! | Exception Handling Contd. | Codelligent
zhlédnutí 1KPřed 2 lety
User Defined Exceptions in C# .Net made easy! | Exception Handling Contd. | Codelligent
Exception Handling in C# .Net made easy! | Try Catch Finally | Throw | Throw ex | Codelligent
zhlédnutí 1,9KPřed 2 lety
Exception Handling in C# .Net made easy! | Try Catch Finally | Throw | Throw ex | Codelligent
Codelligent | Who are we? | Why this Channel? | Love for Coding!
zhlédnutí 819Před 3 lety
Codelligent | Who are we? | Why this Channel? | Love for Coding!
LINQ in C#.Net made easy! - PART 5 : Enumerable Class | Codelligent
zhlédnutí 3,4KPřed 4 lety
LINQ in C#.Net made easy! - PART 5 : Enumerable Class | Codelligent
LINQ in C#.Net made easy! - PART 4 : LINQ to XML | Create XML Files using LINQ | Codelligent
zhlédnutí 9KPřed 4 lety
LINQ in C#.Net made easy! - PART 4 : LINQ to XML | Create XML Files using LINQ | Codelligent
Properties in C#.Net made easy! | How to Quickly Create Properties?
zhlédnutí 864Před 4 lety
Properties in C#.Net made easy! | How to Quickly Create Properties?
LINQ in C#.Net made easy! - PART 3 : Joins in LINQ | Inner Join | Group Join | Left Outer Join
zhlédnutí 18KPřed 4 lety
LINQ in C#.Net made easy! - PART 3 : Joins in LINQ | Inner Join | Group Join | Left Outer Join
LINQ in C#.Net made easy! - PART 2 | OrderBy | ThenBy | GroupBy | Codelligent
zhlédnutí 7KPřed 4 lety
LINQ in C#.Net made easy! - PART 2 | OrderBy | ThenBy | GroupBy | Codelligent
LINQ in C#.Net made easy! - PART 1 | Method Based Syntax | Query Based Syntax | Codelligent
zhlédnutí 17KPřed 4 lety
LINQ in C#.Net made easy! - PART 1 | Method Based Syntax | Query Based Syntax | Codelligent
Extension Methods in C#.Net made easy! | Using it in Real-Time Applications | Codelligent
zhlédnutí 2,2KPřed 4 lety
Extension Methods in C#.Net made easy! | Using it in Real-Time Applications | Codelligent
Tuples in C#.Net made easy! | Generic Tuple | Value Tuple | Named Tuple | Codelligent
zhlédnutí 8KPřed 4 lety
Tuples in C#.Net made easy! | Generic Tuple | Value Tuple | Named Tuple | Codelligent
Lambda Expressions in C#.Net made easy! | Expression Lambda | Statement Lambda | Codelligent
zhlédnutí 21KPřed 4 lety
Lambda Expressions in C#.Net made easy! | Expression Lambda | Statement Lambda | Codelligent
Events in C#.Net made easy! | Using Delegates | Using EventHandler| Passing Custom Data| Codelligent
zhlédnutí 13KPřed 4 lety
Events in C#.Net made easy! | Using Delegates | Using EventHandler| Passing Custom Data| Codelligent
Delegates & Multicast Delegates in C#.Net made easy! |Action & Func| Anonymous Methods | Codelligent
zhlédnutí 6KPřed 4 lety
Delegates & Multicast Delegates in C#.Net made easy! |Action & Func| Anonymous Methods | Codelligent
Thread Synchronization in C# .Net made easy! | Lock | Monitor | Mutex | Semaphore | Codelligent
zhlédnutí 57KPřed 4 lety
Thread Synchronization in C# .Net made easy! | Lock | Monitor | Mutex | Semaphore | Codelligent

Komentáře

  • @sarandeepkaur1573
    @sarandeepkaur1573 PÅ™ed 7 dny

    In the video when you showed arbitrary keyword argument examples- you showed- def showExp(**exps) and then used 2 parameters for k,y in the for loop. But as i understand there can be any number of arguments in an arbitrary keyword argument. How would you handle such scenarios?

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed 4 dny

      Yes in the arbitrary arguments (the variable 'exps') can have any number of arguments. But the variable 'exps' will be of type Dictionary having many key-value pairs inside it. So, when we use 'k, v' variables in the for loop, basically its looping through every item in the 'exps' variable and putting its key in 'k' and corresponding value in 'v'. Hope this makes things clear. 😊

  • @luiscarvalho5726
    @luiscarvalho5726 PÅ™ed 8 dny

    If I have one thread to control like a cancel button and another thread is running, How could I use one thread to cancel another without exceptional how they are different threads. I try to join but the bottom cancel is not available when the other thread is running. How can I let the system listen to the other thread and let it be ready to abort the other thread without expectation problem?

  • @user-mj1ms6jb3z
    @user-mj1ms6jb3z PÅ™ed 10 dny

    wonderful!

  • @luiscarvalho5726
    @luiscarvalho5726 PÅ™ed 13 dny

    Great tips, a really great video!!! Thanks a lot!!!

  • @teenztown
    @teenztown PÅ™ed mÄ›sícem

    So simple. And explained beautifully. Thank you man.😊

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed mÄ›sícem

      Glad it helped! 😃

  • @atif.bilytica
    @atif.bilytica PÅ™ed mÄ›sícem

    Thanks a lot for such a NICE series.

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed mÄ›sícem

      Glad you found them useful! 😊

  • @shahidabbasi1127
    @shahidabbasi1127 PÅ™ed mÄ›sícem

    Good Video on python

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed mÄ›sícem

      Glad you found them useful! 😊

  • @OnoderaMyGirl
    @OnoderaMyGirl PÅ™ed mÄ›sícem

    t.y

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed mÄ›sícem

      Glad you found them useful! 😊

  • @atharvaverma8472
    @atharvaverma8472 PÅ™ed 2 mÄ›síci

    Keep going on ! You will be very successful one day!! I loved your C# Playlist , try to continue that also :)

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed 2 mÄ›síci

      Thank you! And thanks for the feedback. 🙂

  • @fkbey5756
    @fkbey5756 PÅ™ed 2 mÄ›síci

    I have 9 years of c# experience and this video is the best teaching video that i have ever seen. thank you

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed 2 mÄ›síci

      Wow, thanks for such kind words! â¤ï¸

  • @vishnuprabhakar2451
    @vishnuprabhakar2451 PÅ™ed 2 mÄ›síci

    Hi can I get your mail id or contact number?

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed 2 mÄ›síci

      Hi.. You can contact me on - kajin88@outlook.com

  • @deanbergey3594
    @deanbergey3594 PÅ™ed 3 mÄ›síci

    great video mate, much appreciated

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed 2 mÄ›síci

      Glad it helped. 😄

  • @amamsharma372
    @amamsharma372 PÅ™ed 3 mÄ›síci

    Keep uploading

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed 3 mÄ›síci

      That's the plan! 😃

  • @chandniknair3801
    @chandniknair3801 PÅ™ed 3 mÄ›síci

    Contents are crisp and clear..Great work!!

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed 3 mÄ›síci

      Thanks a lot! â¤ï¸

  • @ApexFr777
    @ApexFr777 PÅ™ed 4 mÄ›síci

    Hi do we have to study delegates now when lambda does that work

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed 3 mÄ›síci

      I feel "Delegate" and "Lambda" are distinct concepts. A "Delegate" refers to a variable name that stores a reference to a method or a lambda. On the other hand, a lambda is essentially a method that doesn't have a fixed name.

  • @techtransformers7464
    @techtransformers7464 PÅ™ed 4 mÄ›síci

    Awesome, brilliant video. thanks for making this video.

  • @st-hs2ve
    @st-hs2ve PÅ™ed 4 mÄ›síci

    Excellent work on every tutorial. You put the best effort to make things clear. Really watching many tutorials and then yours, no one comes close as you are. I am not saying you are intelligent among all but your hard work is visible. Deeply appreciate you work man. I really ask the community who wants to learn C#, just watch 1 or 2 of his tutorial and you will be amazed. Please prepare tutorial in chronological way going from basic to advanced.

  • @visnettutorals
    @visnettutorals PÅ™ed 5 mÄ›síci

    Great explanationðŸ‘ðŸ‘

  • @ezt1215
    @ezt1215 PÅ™ed 6 mÄ›síci

    I needed a quick refresher on C# synchronization and this video delivered superbly!

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed 6 mÄ›síci

      Glad it helped! 😊

  • @kvelez
    @kvelez PÅ™ed 7 mÄ›síci

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { internal class Program { static void Main(string[] args) { Func<int, int, bool> Test = (x, y) => { var sum = x + y; Console.WriteLine(sum); return x < y; }; Console.WriteLine(Test(4,5)); } } }

  • @kdxshaggy
    @kdxshaggy PÅ™ed 7 mÄ›síci

    superb!

  • @alaaageela1174
    @alaaageela1174 PÅ™ed 9 mÄ›síci

  • @legomasters8237
    @legomasters8237 PÅ™ed 9 mÄ›síci

    Great explanation! Subscribed. Need more videos from you..........

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed 8 mÄ›síci

      Thanks for the sub! â¤ï¸

  • @dhanushkumar831
    @dhanushkumar831 PÅ™ed 9 mÄ›síci

    Very good demonstration

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed 8 mÄ›síci

      Glad you found it useful. 😇

  • @fonskeee
    @fonskeee PÅ™ed 10 mÄ›síci

    When using the method linq for the left outer join it is GroupBy instead of join, otherwhise the compiler want recognize the DefaultIfEmpty() method.

  • @joshman1019
    @joshman1019 PÅ™ed 11 mÄ›síci

    Excellent video!

  • @basuraratnayake6004
    @basuraratnayake6004 PÅ™ed 11 mÄ›síci

    Informative, Thanks

  • @MahmoudAhmed-nw4ml
    @MahmoudAhmed-nw4ml PÅ™ed rokem

    thanks, simple and clear concepts

  • @walrexx_2370
    @walrexx_2370 PÅ™ed rokem

    this is the best video explain regarding events in c#

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed rokem

      Thanks a lot for such kind words! Glad it was helpful. 😇

  • @vssang4035
    @vssang4035 PÅ™ed rokem

    Thank you for the clear explanation and using the slides for a quick introduction into Tuples (many of us are visual learners). I would recommend increasing your font size in the IDE so your examples would be easier to see as you type it. I look forward to more of these videos.

  • @krzysztofzajac7060
    @krzysztofzajac7060 PÅ™ed rokem

    very good video. Thanks a lot.

  • @manuelweichelt528
    @manuelweichelt528 PÅ™ed rokem

    you should have like X times more followers this is top notch...

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed rokem

      Thanks a lot for such kind words! 😇

  • @Tyronekong
    @Tyronekong PÅ™ed rokem

    Great video thank you.

  • @manuelweichelt528
    @manuelweichelt528 PÅ™ed rokem

    really really good video

  • @AbhayMamidpalliwar
    @AbhayMamidpalliwar PÅ™ed rokem

    Thanks Much. Please post a Series on EF and LINQ as you said at the nd of this video.

  • @AfkL-mo5pe
    @AfkL-mo5pe PÅ™ed rokem

    Thank you very much !!! You video helped me to finally understand LINQ !!!

  • @stepbackandthink
    @stepbackandthink PÅ™ed rokem

    It's a shame you didn't get the exposure and therefore the subscriber volume that you deserve. I've been watching Tutorials for years are you are easily one of the best teachers. Clear and concise. Please keep going and I'm sure the algorithms will grant you the popularity you deserve.

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed rokem

      Thanks a lot for such kind words! Happy that it has been useful for you. 😇

  • @ashu3769
    @ashu3769 PÅ™ed rokem

    Bhai video quality badhao

  • @boopfer387
    @boopfer387 PÅ™ed rokem

    Best C# tuple explanation so far thank you very much.

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed rokem

      Glad it was helpful for you! 😇

  • @germanduterte7110
    @germanduterte7110 PÅ™ed rokem

    awesome

  • @reaverofcheesecake4073
    @reaverofcheesecake4073 PÅ™ed rokem

    Excellently explained. I understood everything you pitched in your video. Well done.

  • @patgaming5629
    @patgaming5629 PÅ™ed rokem

    ty

  • @sheepay99
    @sheepay99 PÅ™ed rokem

    What do you say at 20:25, I couldn't quite catch it (great video by the way) - "our SOMETHING synchronisation was going SOMETHING SOMETHING"?

    • @CODELLIGENT
      @CODELLIGENT PÅ™ed rokem

      At 20:25 I meant to say that the complete synchronisation was going wrong (said - "our complete synchronisation was going for a toss"). 😅

  • @Adze-yah
    @Adze-yah PÅ™ed rokem

    If you can see this comment, please continue posting. I recently found your channel and your explanations have been insightful.

  • @Rahulsingh-rm4iz
    @Rahulsingh-rm4iz PÅ™ed rokem

    bro make more videos if it is possible for you.

  • @Rahulsingh-rm4iz
    @Rahulsingh-rm4iz PÅ™ed rokem

    bro you are good in that please make more videos about dotnet if it ispossible for you

  • @MrSchattka
    @MrSchattka PÅ™ed rokem

    Thanks for your video. It was very helpful.

  • @eatrepeat6781
    @eatrepeat6781 PÅ™ed rokem

    Thread and Multi Thread in C#.NET with Examples | Thread vs Process | English | TEK TUBER | TT czcams.com/video/4H3Qcj80PGk/video.html

  • @HemmingEducation
    @HemmingEducation PÅ™ed rokem

    Explained well! Thanks :)

  • @go6obg92
    @go6obg92 PÅ™ed rokem

    Amazing video, by far the best explanation. You have a gift for teaching!