GithubHelp home page GithubHelp logo

complete-python-bootcamp's People

Contributors

alexslaboratory avatar bricklen avatar bzcorn avatar caroldew avatar eric-camplin avatar hackob avatar jdschmidt avatar jmportilla avatar larkula avatar mikejune avatar nunolf avatar pierian-data avatar prezha avatar webjoe avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

complete-python-bootcamp's Issues

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:

Where to attend the assessment test ?

Hi, I am trying to attend my first assessment test Objects and data structures ,but I am not sure how or where to attend the test. Where can I write brief descriptions about object types / data structures or execute the different code ? Could you please help.

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()

Statement Assesment

One of the first couple questions in the statement assessment asks students to use the str() method without having introduced that in any of the videos up to that point.

Also maybe add a note for Python3 users that range doesn't behave the same way it does in Python2:

#python2
range(0,51)
#python3
list(range(0,51))

not working

when I type what is in the notes for floating point numbers into Jupiter notebook they don't execute

Phyton

Jose my Name is Diego Sanchez and Last week I purchased the boot Camp for Phyton and I am very overwhelmed with all the material and codes, how I am supposed to remember all that stuff

I don't understand the Deck class in Milestone Project 2

In particular what is bold here:

def __str__(self):
        deck_comp = ""
        for card in **self.cards**:
            **deck_comp += " " + deck_comp.__str__()**

        return "The deck has" + deck_comp

self.cards - how is self.cards known?
deck_comp.str() seems like a method for the general string function?

Thanks in advance.

A frustrated user.

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

Project

Sir, can you please send me the working project of a fingerprint attendance system.
And please guide me through the steps involved to run the code.
Thanks!

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

Anaconda prompt

Anaconda prompt did not work ,,
It's not recognised in window 8

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.