Amin Mousavi
Amin Mousavi
  • Видео 16
  • Просмотров 46 732
Comparison & Logical Operators in Python
Comparison operators are used to create conditions, and logical operators are used to combine multiple conditions together. There is a certain order of evaluation you need to follow: comparison operators first, then the NOT operator, then the AND operator, and finally the OR operator. However, by using parentheses, you can control the order of evaluation yourself.
Watch the entire Python series to learn every bit! 🔥
ruclips.net/video/fQLFIHEKGOE/видео.html
Video content:
0:00 Comparison operators
1:47 Chained comparisons
2:13 Identity operators
2:50 Logical operators
6:00 Order of evaluation
8:43 Using parentheses
Просмотров: 92

Видео

Defining Functions in Python
Просмотров 2,8 тыс.2 месяца назад
In this video, you'll learn everything you need to know about defining functions in Python. This includes adding input, receiving output, adding default arguments, storing functions into a variable, and using functions as arguments for other functions. Watch the entire Python series to learn every bit! 🔥 ruclips.net/video/fQLFIHEKGOE/видео.html Course content: 00:00 Intro 00:04 What is a functi...
Built-in Functions & Modules in Python
Просмотров 2,8 тыс.3 месяца назад
In this video, we'll take a look at the most commonly used built-in functions and modules in Python. Functions are used to perform a specific task and modules are essentially reusable pieces of code written by other developers, which you can import into your own projects and use immediately. This can save you a significant amount of effort by avoiding the need to write all the code yourself. Wa...
Variables in Python
Просмотров 1033 месяца назад
In this video, we'll learn everything about variables, including how to define them and the rules and guidelines that apply. We'll also learn how to perform variable operations and finally we'll take a look at the reserved keywords in Python. Watch the entire Python series to learn every bit! 🔥 ruclips.net/p/PLzrmUjyPuWvy_7KI3BnbZOBWbfgD0Dc6i Course content: 00:00-00:09 Intro 00:09-00:22 What y...
Data Types & Expressions in Python
Просмотров 1493 месяца назад
In this video, we'll take a look at some of the fundamental data types, including strings, integers, and floats. We'll learn how to write expressions using arithmetic operators, how to manipulate strings, and finally, we'll look at type casting. Watch the entire Python series to learn every bit! 🔥 ruclips.net/p/PLzrmUjyPuWvy_7KI3BnbZOBWbfgD0Dc6i Course content: 00:00-00:06 Intro 00:06-00:30 Wha...
Merge Sort Algorithm in Java
Просмотров 1,7 тыс.3 месяца назад
In this video, we'll take a look at Merge Sort, a divide-and-conquer algorithm implemented using recursion. It sorts an array in two phases: first, by splitting it into one-element arrays, and then merging them back into sorted order. If you find recursion challenging, this video is designed not only to help you learn Merge Sort but also to aid you in visualizing the recursive process, understa...
Learn Recursion the Easy Way
Просмотров 984 месяца назад
In this video, we'll learn how recursion works and understand how to write recursive methods. We'll use the example of the factorial function. Towards the end, I'll precisely illustrate how functions are invoked and pushed onto the call stack. You'll also understand the importance of the breaking condition and learn how to avoid a call stack overflow. Video content: 00:00-00:05 Intro 00:05-00:3...
Insertion Sort Algorithm in Java
Просмотров 504 месяца назад
In this video, we'll take a look at the Insertion Sort algorithm. Similar to the previous algorithms, it divides the array into a sorted and unsorted partition. However, it sorts the array from the front. It takes an element from the unsorted partition and inserts it in its correct position. With each iteration, the sorted partition grows by 1. We'll understand how it works, implement it in Jav...
Selection Sort Algorithm in Java
Просмотров 564 месяца назад
In this video, we'll have a look the Selection Sort algorithm. It's not the most efficient method, and the performance can decline as the items to sort increase. However, it may perform slightly better than Bubble Sort because there isn't as much swapping needed. We'll understand how it works and implement it in Java later. Finally, we'll look at how it performs in terms of memory, time, and st...
Bubble Sort Algorithm in Java
Просмотров 3 тыс.4 месяца назад
In this video, we'll take a look at the Bubble Sort algorithm. It's not the most efficient algorithm, as the performance degrades quickly with an increasing number of items to sort. However, it serves as an introductory algorithm and is a good step to start learning about algorithms. We'll first learn how it works, and later in the video, we'll implement it in Java. Finally, we'll take a closer...
Learn CSS Grid in 11 Minutes
Просмотров 4,9 тыс.Год назад
In this video I'll teach you everything you need to know, to get started with grid without being overwhelmed. Video content: 00:00 Intro 00:15 Creating a grid container 00:25 Defining columns 00:40 Fraction unit 01:30 Repeat function 01:50 Using multiple units 02:15 Minmax function 02:35 Auto keyword 03:05 Defining rows 03:15 What is a grid? 03:31 Horizontal grid lines 03:37 Row track 04:00 Ver...
CSS Combinators with Examples
Просмотров 225Год назад
CSS combinators make it possible to combine multiple selectors together. This is done by looking at the relationship the selectors have with each other, in this video I will teach you how to target the descendants of a specific element, as well as their direct children and sibling(s). This video is part of a playlist (Learn Every CSS Selector) ruclips.net/video/udFRA83kGcY/видео.html Video cont...
Basic CSS Selectors with Examples
Просмотров 209Год назад
CSS Selectors are used to select elements in order to change their style inside the CSS file. One of the basic selectors we're going to discuss is the universal selector, which is used to target all the HTML elements, and the other selectors will target the elements according to their id, class or tag. This video is part of a playlist (Learn Every CSS Selector) ruclips.net/video/udFRA83kGcY/вид...
How Are Arrays Stored in Memory?
Просмотров 1,2 тыс.Год назад
In this video you'll find out how arrays are stored in memory, as well as how an element from an array.
Learn CSS Flexbox in 6 Minutes
Просмотров 29 тыс.Год назад
In this video, you'll learn how to create flexible layouts using CSS Flexbox in just 6 minutes. We'll look at key properties such as flex-direction, flex-wrap, flex-grow, flex-shrink, and flex-basis. Finally, I'll show you how to align and distribute items along the main and cross axes using justify-content and align-items. Video content: 00:00 Flex 00:15 Inline-flex 00:25 Flex-direction 01:05 ...
What is the Big O Notation?
Просмотров 779Год назад
What is the Big O Notation?

Комментарии

  • @anguswetty
    @anguswetty 2 дня назад

    Legend

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

    Flexbox and grid common part of every devs

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

    you should also talk about jagged arrays

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

    Thanks

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

    I LIKE IT!

  • @darksouls6014
    @darksouls6014 6 месяцев назад

    Holy shit. you are a lifesaver..

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

    Do a same kind of video on grid please

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

    Great video, i would suggest to increase your pace a little.

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

    Love your video man. I was looking for a proper flex box tute for someone I’m sorta mentoring and every bloody video is full of unnecessary crap and so long. Your video is to the point, good pace for a beginner, and the way the IDE is laid out is very easy to visually follow. Thanks a lot and since you didn’t ask me to like, subscribe, and share, I’m definitely gonna do that. Please stick to this method of tutorial making and I promise you’ll have a massive following. Appreciate your work. Cheers mate!

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

    Dude, welcome to RUclips. Instant subscribe. I have a feeling this channel is going to be great. Love your teaching style, your pace, and your voice. Thank you.

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

    ЧО НАХУЙ

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

    I like how the thumbnail is impossible to do with flexbox.

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

      Funnily enough, I did that in flexbox because I still don’t understand grid 😂

    • @e.vilcorp
      @e.vilcorp Год назад

      Wym, you can easily create it with flex box

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

      Not impossible, just far more better to just use grids

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

      You just need to define widths on each square/rectangle in the grid and give wrap to flex-wrap. However you’re right in the sense that you can’t fix the grid’s columns and rows though with flexbox

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

      Probably grid

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

    This is the tutorial we always needed but never had!!!! Will recommend it to anyone who wants to learn flex-box😙

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

      Can you please make a video on grid layout it still haunts me to this day 😅

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

    finally, a flex tutorial that isnt 20mins long. I've been starting to hate CSS and rethinking if I even want to do front-end. I figured I should stick it out a little longer and it'll get easier and more enjoyable. This was really simple and to the point.

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

      You should try Kevin Powell's tutorials. It helps me a ton

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

      Your attention span is so low mate

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

      you havent seen "slaying the dragon" then. Ramzi is a CSS God.

  • @9To5Digitale
    @9To5Digitale Год назад

    Thank you 🙏🏻

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

    Best. Thanks👍

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

    Great explanation. Could please answer this. I was asked to do this in interview. HTML ---------- <!-- Make both elements width align --> <p>Sample paragraph</p> <h1>Heading One</h1> ----------- CSS ----------- p {width: 220px; padding: 10px; background: gray; } h1{width: 220px; background: green; } -> i was told to make this align without changing the width Could you please answer this or make a video on this

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

    straight to the point, thanks😁