Lectures for Udemy - Complete Python Bootcamp Course

Overview

Complete-Python-Bootcamp

Welcome to the Repository for the Complete Python Bootcamp!

This is the Repository for the Udemy course - "Complete Python Bootcamp".

You can purchase the course at a 50% discount by clicking here. Purchasing the course grants access to all the screencast videos and the moderated discussion forums!

In this repo you will find all the accompanying Jupyter (p.k.a. iPython) Notebooks for the course. For quicker view rendering and simpler downloading procedures, you can check out this repo using NbViewer.

Then navigate to your desired lecture and enjoy! You can download the .ipynb files onto your own computer for convenience.

Enjoy the course and thank you for enrolling!

Comments
  • Fixed typos in the project files

    Fixed typos in the project files

    I saw that you had a lot of typos in your project files so I decided to fork your project and fix them for you. I hope that you like the changes I made.

    Thanks, Alex

    opened by Lowe-Man 1
  • Module and Packages is empty

    Module and Packages is empty

    Hi Jose, I'm an student from Udemy, but I'm not able to see this Jupyter Notebook in Udemy or here in GitHub. Could you please upload it again?

    Thank you very much

    opened by ccantero 1
  • Update Lists.ipynb

    Update Lists.ipynb

    minor edit in "Nesting Lists"

    added "have" so now reads

    This means we can have data structures within data structures. For example: A list inside a list

    opened by eric-camplin 1
  • Lists.ipynb typos

    Lists.ipynb typos

    The following line appearing after In 44: Use pop to "pop off" an item form the list. By default pop takes off the last index, but you can also specify whic index to pop off. Let's see an example:

    should probably be: Use pop to "pop off" an item from the list. By default pop takes off the last index, but you can also specify which index to pop off. Let's see an example:

    opened by HTrammel 1
  • Fixed typos in Strings.ipynb

    Fixed typos in Strings.ipynb

    Fixed typo: “continnue” to “continue” in the last line of the Python 3 Alert Under “String Indexing” changed “In Python, we use brackets [] after an object to call it's index” to “In Python, we use brackets [] after an object to call its index” In “String Properties” changed “elements within it can not be changes or replaced” to “elements within it can not be changed or replaced” Last line: added a space after the hashes to make it show up as a heading in Markdown.

    opened by caroldew 1
  • Update Jupyter (iPython) Notebooks Guide.ipynb

    Update Jupyter (iPython) Notebooks Guide.ipynb

    Corrected broken link for "Bryn Mawr College Computer Science Guide":

    instead of: https://athena.brynmawr.edu/hub/dblank/public/Jupyter%20Notebook%20Users%20Manual.ipynb

    should be: https://athena.brynmawr.edu/jupyter/hub/dblank/public/Jupyter%20Notebook%20Users%20Manual.ipynb

    Best regards, Predrag Rogic

    opened by prezha 0
  • Advanced Dictionaires

    Advanced Dictionaires

    The iteritems(), iterkeys() and itervalues() these three methods are not supported by python3 anymore instead use dict.items(), dict.values() and dict.keys()

    opened by kenoah 1
  • Functions - Prime Check in Python3 Returns Multiple Values

    Functions - Prime Check in Python3 Returns Multiple Values

    In Python3.7, entering this function and passing the number 5 to the function results in multiple return values of "True". What's causing that?

    def is_prime(num):
        '''
        Naive method of checking for primes. 
        '''
        for n in range(2,num):
            if num % n == 0:
                print 'not prime'
                break
        else: # If never mod zero, then prime
            print 'prime'
    
    >>> is_prime(5)
    prime
    prime
    prime
    
    opened by paper-skyline 1
Owner
Marci
I teach on Udemy and at www.pieriandata.com. Interested in corporate data science and programming training? Contact us: training AT pieriandata.com
Marci
✨ Udemy Coupon Finder For Discord. Supports Turkish & English Language.

Udemy Course Finder Bot | Udemy Kupon Bulucu Botu This bot finds new udemy coupons and sends to the channel. Before Setup You must have python >= 3.6

Penguen 4 May 4, 2022
UdemyPy is a bot that hourly looks for Udemy free courses and post them in my Telegram Channel: Free Courses.

UdemyPy UdemyPy is a bot that hourly looks for Udemy free courses and post them in my Telegram Channel: Free Courses. How does it work? For publishing

null 88 Dec 25, 2022
Thumbor-bootcamp - learning and contribution experience with ❤️ and 🤗 from the thumbor team

Thumbor-bootcamp - learning and contribution experience with ❤️ and ?? from the thumbor team

Thumbor (by @globocom) 9 Jul 11, 2022
All exercises done during the Python 3 course in the Video Course (World 1, 2 and 3)

Python3-cursoemvideo-exercises - All exercises done during the Python 3 course in the Video Course (World 1, 2 and 3)

Renan Barbosa 3 Jan 17, 2022
:snake: Complete C99 parser in pure Python

pycparser v2.20 Contents 1 Introduction 1.1 What is pycparser? 1.2 What is it good for? 1.3 Which version of C does pycparser support? 1.4 What gramma

Eli Bendersky 2.8k Dec 29, 2022
A simple but complete exercise to learning Python

ResourceReservationProject This is a simple but complete exercise to learning Python. Task and flow chart We are going to do a new fork of the existin

null 2 Nov 14, 2022
A complete python calculator with 2 modes Float and Int numbers.

Python Calculator This program is made for learning purpose. Getting started This Program runs using python, install it via terminal or from thier ofi

Felix Sanchez 1 Jan 18, 2022
A repository containing useful resources needed to complete the SUSE Scholarship Challenge #UdacitySUSEScholars #poweredbySUSE

SUSE-udacity-cloud-native-scholarship A repository containing useful resources needed to complete the SUSE Scholarship Challenge #UdacitySUSEScholars

Nandini Proothi 11 Dec 2, 2021
Install Firefox from Mozilla.org easily, complete with .desktop file creation.

firefox-installer Install Firefox from Mozilla.org easily, complete with .desktop file creation. Dependencies Python 3 Python LXML Debian/Ubuntu: sudo

rany 7 Nov 4, 2022
Running a complete single-node all-in-one cluster instance of TIBCO ActiveMatrix™ BusinessWorks 6.8.0.

TIBCO ActiveMatrix™ BusinessWorks 6.8 Docker Image Image for running a complete single-node all-in-one cluster instance of TIBCO ActiveMatrix™ Busines

Federico Alpi 1 Dec 10, 2021
The semi-complete teardown of Cosmo's Cosmic Adventure.

The semi-complete teardown of Cosmo's Cosmic Adventure.

Scott Smitelli 10 Dec 2, 2022
Taxonomy addition for complete trees

TACT: Taxonomic Addition for Complete Trees TACT is a Python app for stochastic polytomy resolution. It uses birth-death-sampling estimators across an

Jonathan Chang 3 Jun 7, 2022
JimShapedCoding Python Crash Course 2021

Python CRASH Course by JimShapedCoding - Click Here to Start! This Repository includes the code and MORE exercises on each section of the entire cours

Jim Erg 64 Dec 23, 2022
Assignment for python course, BUPT 2021.

pyFuujinrokuDestiny Assignment for python course, BUPT 2021. Notice username and password must be ASCII encoding. If username exists in database, syst

Ellias Kiri Stuart 3 Jun 18, 2021
Module 2's katas from Launch X's python introduction course.

Module2Katas Module 2's katas from Launch X's python introduction course. Virtual environment creation process (on Windows): Create a folder in any de

Javier Méndez 1 Feb 10, 2022
This is an online course where you can learn and master the skill of low-level performance analysis and tuning.

Performance Ninja Class This is an online course where you can learn to find and fix low-level performance issues, for example CPU cache misses and br

Denis Bakhvalov 1.2k Dec 30, 2022
An interactive course to git

OperatorEquals' Sandbox Git Course! Preface This Git course is an ongoing project containing use cases that I've met (and still meet) while working in

John Torakis 62 Sep 19, 2022
Do you need a screensaver for CircuitPython? Of course you do

circuitpython_screensaver Do you need a screensaver for CircuitPython? Of course you do Demo video of dvdlogo screensaver: screensaver_dvdlogo.mp4 Dem

Tod E. Kurt 8 Sep 2, 2021
Tutor plugin for integration of Open edX with a Richie course catalog

Richie plugin for Tutor This is a plugin to integrate Richie, the learning portal CMS, with Open edX. The integration takes the form of a Tutor plugin

Overhang.IO 2 Sep 8, 2022