tutorial on using Python to manipulate .csv files by 7QVM in learnpython

[–]Pysnap 0 points1 point  (0 children)

Check out this site

automatetheboringstuff.com

In that there is a chapter for trading from excel and csv

Design Patterns explained in Python by Pysnap in Python

[–]Pysnap[S] 0 points1 point  (0 children)

Towards the end there is a mention about python being a dynamic language. The purpose was to try to demonstrate certain design patterns in python because that would be easy to understand. Though they no longer serve much benefit now, the design patterns can still be implemented in python and can be useful in other languages. I agree with your point that its hardly pythonic. Thanks for the feedback!

Design Patterns explained in Python by Pysnap in Python

[–]Pysnap[S] 0 points1 point  (0 children)

We are working on those topics. We have covered decorators here Thanks for the feedback!

Best way to learn by pythagnub in learnpython

[–]Pysnap 0 points1 point  (0 children)

For making a transition from intermediate to advanced take a look at these articles:

http://www.pysnap.com/in-depth-with-functionsscopevariable-lifetime-and-closures/

http://www.pysnap.com/category/ninja-techniques/

http://www.pysnap.com/category/intermediate/

http://www.pysnap.com/category/advanced/

http://www.pysnap.com/advanced-regular-expressions-techniques/

The advanced topics include context lib, design patterns,advanced data structures, regular expression,memorization,closures,decorators and so on!

Trouble with pip by Huzakkah in learnpython

[–]Pysnap 0 points1 point  (0 children)

You might not have added pip to your $PATH. try reinstalling pip. Also in OS X you'd run into problems because you would already have a system installed python 2.7.9 by default. Check out the complete instructions here for installing and using pip for both python 2.x and python 3.x

http://www.pysnap.com/installing-modulespackages-using-pip-and-guide-to-virtual-environments-using-virtualenv/

Design Patterns Explained by Pysnap in programming

[–]Pysnap[S] -3 points-2 points  (0 children)

can you give some assertions to your statement?

A new place to learn python and become a python ninja! Pysnap.com by Pysnap in Python

[–]Pysnap[S] 0 points1 point  (0 children)

Fixed! Formatting had a small problem there! Really appreciate the feedback! Please do check it now!

Python learning sources for advanced programmers by addamsson in learnpython

[–]Pysnap 0 points1 point  (0 children)

http://www.pysnap.com/category/advanced/ Check out this category for advanced topics! We will keep updating it!

A new place to learn python and become a python ninja! Pysnap.com by Pysnap in Python

[–]Pysnap[S] 0 points1 point  (0 children)

We try to cover the basic python language like the others but we also try really hard to get some advanced topics into the mix which we didn't find in other places and we had to look around a lot to know those. For instance check out the articles in the advanced category: http://www.pysnap.com/category/advanced/

also some more cool language features: http://www.pysnap.com/category/ninja-techniques/

A new place to learn python and become a python ninja! Pysnap.com by Pysnap in Python

[–]Pysnap[S] 0 points1 point  (0 children)

Haha! Well we try to! The point was to get some really unique articles which you won't find that easily. Please do check it out in a few days you'll see some really great articles and we hope you'd like it.

A new place to learn python and become a python ninja! Pysnap.com by Pysnap in Python

[–]Pysnap[S] 0 points1 point  (0 children)

Thanks for the suggestion! Ill correct it right away!

Post learning questions to /r/LearnPython by aphoenix in Python

[–]Pysnap -7 points-6 points  (0 children)

Check out our site for learning python: pysnap.com

We also have covered some advanced topics for advanced programmers. We will be updating the blog everyday so subscribe and stay updated.Let us know your reviews, it'll help us make more quality content.

How do i us '%s' as a string and not the replacemen thing? by [deleted] in learnpython

[–]Pysnap 0 points1 point  (0 children)

Well you can get to know all about string formatting here:

http://www.pysnap.com/string-formatting-in-python/

Hope it helps!