Patrick
Patrick
  • 716
  • 24 335

Video

Plotting Without Line, Multiple Points, Default X- Points || Matplotlib
zhlédnutí 11Před 28 dny
Plotting Without Line, Multiple Points, Default X- Points || Matplotlib
Matplotlib pyplot, Matplotlib Plotting, Plotting x and y points || Data Analysis with Python
zhlédnutí 11Před 28 dny
Matplotlib pyplot, Matplotlib Plotting, Plotting x and y points || Data Analysis with Python
Matplot library(Matplotlib), installation, import and Version checking || Data Analysis with Python
zhlédnutí 18Před 28 dny
Matplot library(Matplotlib), installation, import and Version checking || Data Analysis with Python using Matplotlib
if ....Else || Test Yourself Exercises and Solutions
zhlédnutí 16Před měsícem
if ....Else || Test Yourself Exercises and Solutions
if ...Else - Test Yourself Exercises
zhlédnutí 16Před měsícem
Python if ...Else - Test Yourself Exercises
Or , Not , Nested if , The pass Statement
zhlédnutí 26Před měsícem
Or , Not , Nested if , The pass Statement in Python
short Hand if, short Hand if...Else, multiple else statements, And Keyword
zhlédnutí 25Před měsícem
short Hand if, short Hand if...Else, multiple else statements, And Keyword in Python
Using if keyword, if statement without indentation, Elif and Else Conditions in Python
zhlédnutí 22Před měsícem
Using if keyword, if statement without indentation, Elif and Else Conditions in Python
Test, Exercises and Answers || Dictionaries in Python
zhlédnutí 27Před měsícem
Test, Exercises and Answers || Dictionaries in Python
setdefault(), update() and values() || dictionary methods
zhlédnutí 9Před měsícem
setdefault(), update() and values() || dictionary methods in Python
items(), keys(), pop(), and popitem() || dictionary methods
zhlédnutí 38Před měsícem
items(), keys(), pop(), and popitem() || dictionary methods
CAESAR CIPHER CODE || CRACKING CODES WITH PYTHON
zhlédnutí 11Před měsícem
CAESAR CIPHER CODE || CRACKING CODES WITH PYTHON
CRACKING CODES WITH PYTHON || TRANSPOSITION CIPHER ENCRYPTION
zhlédnutí 23Před měsícem
CRACKING CODES WITH PYTHON || TRANSPOSITION CIPHER ENCRYPTION
Dictionary Methods || clear(), copy(), fromkeys and get()
zhlédnutí 26Před měsícem
Dictionary Methods || clear(), copy(), fromkeys and get()
Nested Dictionaries, Adding three dictionaries into a new dictionary, Access items in dictionaries
zhlédnutí 44Před měsícem
Nested Dictionaries, Adding three dictionaries into a new dictionary, Access items in dictionaries
Loop using items() method || Copy Dictionaries using copy() and dict() methods
zhlédnutí 44Před měsícem
Loop using items() method || Copy Dictionaries using copy() and dict() methods
Looping through a dictionary || using a for loop, using values() method
zhlédnutí 51Před měsícem
Looping through a dictionary || using a for loop, using values() method
change value of a specific item, update dictionary items, add items, remove using pop()
zhlédnutí 38Před měsícem
change value of a specific item, update dictionary items, add items, remove using pop()
Get items - items() , change original dictionary, add new item to dictionary, check if key exists
zhlédnutí 31Před měsícem
Get items - items() , change original dictionary, add new item to dictionary, check if key exists
Get values, update value list, add new item || Python Dictionaries
zhlédnutí 27Před měsícem
Get values, update value list, add new item || Python Dictionaries
Access dictionary items, get() method, Get keys - keys()
zhlédnutí 27Před měsícem
Access dictionary items, get() method, Get keys - keys()
Dictionary Length, Dictionary Data Types , type(), dict() Constructor
zhlédnutí 10Před měsícem
Dictionary Length, Dictionary Data Types , type(), dict() Constructor
Python Dictionaries || dictionary items , Ordered or Unordered, changeable, duplicates NOT allowed
zhlédnutí 40Před měsícem
Python Dictionaries || dictionary items , Ordered or Unordered, changeable, duplicates NOT allowed
Test , Exercises and Answers || Set Methods
zhlédnutí 45Před měsícem
Test , Exercises and Answers || Set Methods
symmetric_difference_update ^= , union() | , and update() |= set methods
zhlédnutí 21Před měsícem
symmetric_difference_update ^= , union() | , and update() |= set methods
greater than , less than , pop(), remove() and symmetric_difference() ^
zhlédnutí 29Před měsícem
greater than , less than , pop(), remove() and symmetric_difference() ^
intersection_update() &=, isdisjoint(),issubset(), issuperset()
zhlédnutí 28Před měsícem
intersection_update() &=, isdisjoint(),issubset(), issuperset()
Set Methods || different(), difference_update(), discard() and intersection &
zhlédnutí 24Před měsícem
Set Methods || different(), difference_update(), discard() and intersection &
symmetric_difference_update(), Set Methods | add(), clear(), copy()
zhlédnutí 24Před měsícem
symmetric_difference_update(), Set Methods | add(), clear(), copy()

Komentáře

  • @lukeeckardt7675
    @lukeeckardt7675 Před 16 dny

    for digit in even_digits: print(digit) dosen'T work

  • @korem7417
    @korem7417 Před 2 měsíci

    this one don't make sense. it tells you put the print() and make_allowed_move() calls INSIDE an if statement. but the code passes only when make_allowed_move() is indented OUTSIDE the if statement

  • @INSIGHT16
    @INSIGHT16 Před 2 měsíci

    Thanks

  • @Lucifer_1019
    @Lucifer_1019 Před 2 měsíci

    No its not working

  • @user-qs4oz9rt2g
    @user-qs4oz9rt2g Před 4 měsíci

    man you have to put these in to a play list finding them one by one is driving me nuts

  • @user-sn8ew5bp4v
    @user-sn8ew5bp4v Před 4 měsíci

    Now task until 61 step is changed. Step 61 Instead of using a loop and a counter variable, you can achieve the same result with a different approach, which you are going to implement in the next few steps. all() is a built-in Python function that returns True if all the elements inside a given iterable evaluate to True. Otherwise, it returns False. Replace your existing for loop and two if statements with a single if statement. For the if condition, use a call to the all() function and pass an empty list as the argument to the function call.

  • @user-sn8ew5bp4v
    @user-sn8ew5bp4v Před 4 měsíci

    Now task until 61 step is changed. Step 61 Instead of using a loop and a counter variable, you can achieve the same result with a different approach, which you are going to implement in the next few steps. all() is a built-in Python function that returns True if all the elements inside a given iterable evaluate to True. Otherwise, it returns False. Replace your existing for loop and two if statements with a single if statement. For the if condition, use a call to the all() function and pass an empty list as the argument to the function call.

  • @user-sn8ew5bp4v
    @user-sn8ew5bp4v Před 4 měsíci

    count = 0 for constraint, pattern in constraints: if constraint <= len(re.findall(pattern, password)): count+=1

  • @viatcheslavsidorov6722
    @viatcheslavsidorov6722 Před 4 měsíci

    It took me a long time to select a solution, because... “if n % 2:”, as well as “if (n % 2) != 0:” was not accepted as a correct decision (and these decisions are correct)

  • @narawithyoutube5456
    @narawithyoutube5456 Před 4 měsíci

    what the hell, it was really hard. thank you, you are a life saver!

  • @EliCreed
    @EliCreed Před 5 měsíci

    nice vid bro undderated. first

  • @koushikromel
    @koushikromel Před 5 měsíci

    Thanks it helped me but how where it is checking the previous step's condition that the count should be 4 inorder to break!

  • @illustriousorchestrations5528

    I was asked to indent 'unvisited.append(node) under the for loop

    • @InfinitySilentCode
      @InfinitySilentCode Před 5 měsíci

      Thats true Code should be like below for node in graph : unvisited.append( node) " unvisited comes right under the word node "

  • @InfinitySilentCode
    @InfinitySilentCode Před 5 měsíci

    I am always here to help anyone especially those stuck with freecodecamp tutorials and Steps

  • @InfinitySilentCode
    @InfinitySilentCode Před 5 měsíci

    With patience, practice and persistence , i believe freecodecamp has sufficient practice to take one from beginner to expert level

  • @illustriousorchestrations5528

    coding all of 5 days, it's clear to me i would benefit from further instruction, is there anyone you would recommend? i'm offended by 'bro code's' black [icon] face, but people rave about his instruction in the reviews, there has to be someone less ignorant [i hope that is all that offense represents] who can introduce the basic principles clearly

    • @InfinitySilentCode
      @InfinitySilentCode Před 5 měsíci

      If you can follow my solution steps , you will be good , I always begin from step one - the basics

    • @illustriousorchestrations5528
      @illustriousorchestrations5528 Před 5 měsíci

      Your solutions are great - would you consider organizing them into playlists@@InfinitySilentCode

  • @illustriousorchestrations5528

    i forgot to include the comma after test - silly mistake that would have taken me longer than necessary to grok... this is how the site should be. language is only intuitive once an amount of fluency has evolved. thank you

  • @user-qs4oz9rt2g
    @user-qs4oz9rt2g Před 5 měsíci

    THANK YOU

  • @InfinitySilentCode
    @InfinitySilentCode Před 5 měsíci

    Happy to help

  • @AeonTon
    @AeonTon Před 5 měsíci

    your videos always help me when im stuck on these freecodecamp steps!!!

  • @garylong9260
    @garylong9260 Před 5 měsíci

    Thank you Patrick! I couldn't have completed this task without your help!🎉❤

  • @TheGrimAdventuresOf
    @TheGrimAdventuresOf Před 5 měsíci

    THANK YOU, the amount of difficulty i had trying to get past this because i had the extra line the odd digit for loop had makes me seriously doubt myself. Tho im only a few weeks into programming all i can do is try and try again, this was my first answer but i had a typo or syntax error that i overlooked a few times until i decided to try and use the last for loop as a template but that had me fucked up for way longer than it should have, after 30 min i used chat gpt and it kept saying it was right too so i was pulling my hair out

    • @InfinitySilentCode
      @InfinitySilentCode Před 5 měsíci

      Let me know in case your stuck anywhere when we identify where code was stuck , then we are seriously learning

  • @keshwan0
    @keshwan0 Před 6 měsíci

    thanks man 🙏

  • @kkfhjcu
    @kkfhjcu Před 6 měsíci

    I wonder why I keep getting errors even though my code was the same as yours

    • @InfinitySilentCode
      @InfinitySilentCode Před 6 měsíci

      indentation is vital in python programming

    • @InfinitySilentCode
      @InfinitySilentCode Před 6 měsíci

      You can also check your spacing, a space is a character in itself and may result into an error