CODELLIGENT
CODELLIGENT
  • Видео 31
  • Просмотров 169 087
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 yo...
Просмотров: 44

Видео

Modules and Packages in Python Made Easy | Python Made Easy Series | Codelligent
Просмотров 542 месяца назад
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
Просмотров 722 месяца назад
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
Просмотров 312 месяца назад
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
Просмотров 292 месяца назад
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
Просмотров 293 месяца назад
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
Просмотров 223 месяца назад
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
Просмотров 453 месяца назад
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
Просмотров 393 месяца назад
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
Просмотров 653 месяца назад
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
Просмотров 1204 месяца назад
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
Просмотров 914 месяца назад
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
Просмотров 834 месяца назад
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
Просмотров 2579 месяцев назад
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
Просмотров 2259 месяцев назад
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
Просмотров 1 тыс.2 года назад
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
Просмотров 2 тыс.2 года назад
Exception Handling in C# .Net made easy! | Try Catch Finally | Throw | Throw ex | Codelligent
Codelligent | Who are we? | Why this Channel? | Love for Coding!
Просмотров 8303 года назад
Codelligent | Who are we? | Why this Channel? | Love for Coding!
LINQ in C#.Net made easy! - PART 5 : Enumerable Class | Codelligent
Просмотров 3,4 тыс.4 года назад
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
Просмотров 9 тыс.4 года назад
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?
Просмотров 8674 года назад
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
Просмотров 18 тыс.4 года назад
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
Просмотров 7 тыс.4 года назад
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
Просмотров 18 тыс.4 года назад
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
Просмотров 2,2 тыс.4 года назад
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
Просмотров 8 тыс.4 года назад
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
Просмотров 21 тыс.4 года назад
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
Просмотров 13 тыс.4 года назад
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
Просмотров 6 тыс.4 года назад
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
Просмотров 58 тыс.4 года назад
Thread Synchronization in C# .Net made easy! | Lock | Monitor | Mutex | Semaphore | Codelligent

Комментарии

  • @sarandeepkaur1573
    @sarandeepkaur1573 Месяц назад

    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 Месяц назад

      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 Месяц назад

    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 Месяц назад

    wonderful!

  • @luiscarvalho5726
    @luiscarvalho5726 Месяц назад

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

    • @CODELLIGENT
      @CODELLIGENT Месяц назад

      Glad it was helpful! 😊

  • @teenztown
    @teenztown 2 месяца назад

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

  • @atif.bilytica
    @atif.bilytica 2 месяца назад

    Thanks a lot for such a NICE series.

    • @CODELLIGENT
      @CODELLIGENT 2 месяца назад

      Glad you found them useful! 😊

  • @shahidabbasi1127
    @shahidabbasi1127 2 месяца назад

    Good Video on python

    • @CODELLIGENT
      @CODELLIGENT 2 месяца назад

      Glad you found them useful! 😊

  • @OnoderaMyGirl
    @OnoderaMyGirl 2 месяца назад

    t.y

    • @CODELLIGENT
      @CODELLIGENT 2 месяца назад

      Glad you found them useful! 😊

  • @atharvaverma8472
    @atharvaverma8472 3 месяца назад

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

    • @CODELLIGENT
      @CODELLIGENT 3 месяца назад

      Thank you! And thanks for the feedback. 🙂

  • @fkbey5756
    @fkbey5756 3 месяца назад

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

    • @CODELLIGENT
      @CODELLIGENT 3 месяца назад

      Wow, thanks for such kind words! ❤️

  • @vishnuprabhakar2451
    @vishnuprabhakar2451 3 месяца назад

    Hi can I get your mail id or contact number?

    • @CODELLIGENT
      @CODELLIGENT 3 месяца назад

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

  • @deanbergey3594
    @deanbergey3594 4 месяца назад

    great video mate, much appreciated

  • @amamsharma372
    @amamsharma372 4 месяца назад

    Keep uploading

    • @CODELLIGENT
      @CODELLIGENT 4 месяца назад

      That's the plan! 😃

  • @chandniknair3801
    @chandniknair3801 4 месяца назад

    Contents are crisp and clear..Great work!!

  • @ApexFr777
    @ApexFr777 5 месяцев назад

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

    • @CODELLIGENT
      @CODELLIGENT 4 месяца назад

      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 5 месяцев назад

    Awesome, brilliant video. thanks for making this video.

  • @st-hs2ve
    @st-hs2ve 5 месяцев назад

    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 6 месяцев назад

    Great explanation👍👍

  • @ezt1215
    @ezt1215 7 месяцев назад

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

    • @CODELLIGENT
      @CODELLIGENT 7 месяцев назад

      Glad it helped! 😊

  • @kvelez
    @kvelez 8 месяцев назад

    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 8 месяцев назад

    superb!

  • @alaaageela1174
    @alaaageela1174 10 месяцев назад

  • @legomasters8237
    @legomasters8237 10 месяцев назад

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

    • @CODELLIGENT
      @CODELLIGENT 9 месяцев назад

      Thanks for the sub! ❤️

  • @dhanushkumar831
    @dhanushkumar831 10 месяцев назад

    Very good demonstration

    • @CODELLIGENT
      @CODELLIGENT 9 месяцев назад

      Glad you found it useful. 😇

  • @fonskeee
    @fonskeee 11 месяцев назад

    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 Год назад

    Excellent video!

  • @basuraratnayake6004
    @basuraratnayake6004 Год назад

    Informative, Thanks

  • @MahmoudAhmed-nw4ml
    @MahmoudAhmed-nw4ml Год назад

    thanks, simple and clear concepts

  • @walrexx_2370
    @walrexx_2370 Год назад

    this is the best video explain regarding events in c#

    • @CODELLIGENT
      @CODELLIGENT Год назад

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

  • @vssang4035
    @vssang4035 Год назад

    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 Год назад

    very good video. Thanks a lot.

  • @manuelweichelt528
    @manuelweichelt528 Год назад

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

    • @CODELLIGENT
      @CODELLIGENT Год назад

      Thanks a lot for such kind words! 😇

  • @Tyronekong
    @Tyronekong Год назад

    Great video thank you.

  • @manuelweichelt528
    @manuelweichelt528 Год назад

    really really good video

  • @AbhayMamidpalliwar
    @AbhayMamidpalliwar Год назад

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

  • @AfkL-mo5pe
    @AfkL-mo5pe Год назад

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

  • @stepbackandthink
    @stepbackandthink Год назад

    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 Год назад

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

  • @ashu3769
    @ashu3769 Год назад

    Bhai video quality badhao

  • @boopfer387
    @boopfer387 Год назад

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

    • @CODELLIGENT
      @CODELLIGENT Год назад

      Glad it was helpful for you! 😇

  • @germanduterte7110
    @germanduterte7110 Год назад

    awesome

  • @reaverofcheesecake4073
    @reaverofcheesecake4073 Год назад

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

  • @patgaming5629
    @patgaming5629 Год назад

    ty

  • @sheepay99
    @sheepay99 Год назад

    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 Год назад

      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 Год назад

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

  • @Rahulsingh-rm4iz
    @Rahulsingh-rm4iz Год назад

    bro make more videos if it is possible for you.

  • @Rahulsingh-rm4iz
    @Rahulsingh-rm4iz Год назад

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

  • @MrSchattka
    @MrSchattka Год назад

    Thanks for your video. It was very helpful.

  • @eatrepeat6781
    @eatrepeat6781 Год назад

    Thread and Multi Thread in C#.NET with Examples | Thread vs Process | English | TEK TUBER | TT ruclips.net/video/4H3Qcj80PGk/видео.html

  • @HemmingEducation
    @HemmingEducation Год назад

    Explained well! Thanks :)

  • @go6obg92
    @go6obg92 Год назад

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