Git Product home page Git Product logo

python3-in-one-pic's Introduction

Python3 in one pic

[ Languages: English ]

Gitter chat button BitCoin donate button

Online Version

https://git.io/Coo-py3

Notebook

IPython Notebook Version

Preview

py3 in one pic

Releated projects

TODO

  • Use IPython notebook, it's really very cool!

  • import this

  • Basic Syntax

  • Native Datatypes

    • Number
    • String
    • Boolean
    • None
    • Byte
    • List
    • Tuple
    • Set
    • Dict
  • Operators & Casting

  • Flow Control

    • if/elif/else
    • for...in...
    • while
    • break & continue
    • Iterators & Generators
    • Comprehensions
  • Function

    • Definition
    • Arguments
    • Lambda
    • Documentation
    • @decorator
  • Class(OOP)

    • class
    • __init__() & self
    • Instance
    • Inheritance
    • Override
  • Module

    • import
    • Search Path
    • Package
  • Pythonic

  • Standard Libraries

    • os, sys
    • datetime

Donation

If you find this project helpful, please consider making a donation with bitcoin or other way 🍻

References

  1. Python 3.4.3 documentation
  2. Dive Into Python 3
  3. Writing Idiomatic Python 3.3
  4. Google Python Style Guide
  5. 廖雪峰的Python教程

License

See the LICENSE file for license rights and limitations (MIT).

python3-in-one-pic's People

Contributors

jexell avatar lkreimann avatar rainyear avatar us 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

python3-in-one-pic's Issues

for label broken

The label for the for cycle in the image is partially hidden (only the bottom half of the word "for" is shown).

dev/master branch

I would suggest creating a dev branch that you use to work on examples. Once they're one, you can merge them into the master branch.

set is missing '!' in later part

            >>> st = set(['s', 'e', 'T'])
            >>> st
            {'s', 'T', 'e'}
            >>> st.add('t')  
            >>> st
            {'s', 'T', 't', 'e'}
            >>> st.add('t')
            >>> st
            {'s', 'T', 't', 'e'}
            >>> st.update(['!', '!'])
            >>> st
            {'s', 'T', 't', '!', 'e'}
            >>> st.discard('t') 
            >>> st
            {'s', 'T', '!', 'e'}
            >>> st.remove('T') 
            >>> st
            {'s', '!', 'e'}
            >>> st.pop()
            's'
            >>> st
            {'!', 'e'}
            >>> 

PDF version

Uhm.. png is nice but not as searchable, so how about a PDF version 🤠

建议

思维导图不适合代码显示,而且图太大不利于显示,事实上,现在已经有更好的显示了,那种“cheat sheet”形式。

I love the work

Hey. I am very thankful for you having done this. Please I hope to see it completed soon. Thanks

print

hi!
it is a nice project!
I love it' and I want to print it in A4 size, is it possible anyway?
(part after part)

args, kargs example

While it is correct in the notebook, the results are incorrect in the PNG.

Should be: args ('Python', 'Javascript')
Displays in PNG as: args('Python', 'C')

Slicing Example

Why is the slicing example so bizarre? I assume this was intended for an English speaking audience (given everything else is in english), so I'm not sure a japanese slicing example does any more than show unicode support and confuse the reader in terms of actual slicing mechanics.

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.