Mastering Dyalog APL
Author : Bernard Legrand
Publisher :
Page : 796 pages
File Size : 17,73 MB
Release : 2009
Category : APL (Computer program language)
ISBN : 9780956463807
Author : Bernard Legrand
Publisher :
Page : 796 pages
File Size : 17,73 MB
Release : 2009
Category : APL (Computer program language)
ISBN : 9780956463807
Author : Leonard Gilman
Publisher : John Wiley & Sons
Page : 404 pages
File Size : 20,75 MB
Release : 1976
Category : Computers
ISBN : 9780471300229
Author : Julia Case Bradley
Publisher :
Page : 679 pages
File Size : 25,67 MB
Release : 2009-01-08
Category : C# (Computer program language)
ISBN : 9780070172814
Offering a hands-on approach, this text offers a fresh and easily accessible way to learning programming concepts using Visual C# for 2008. The authors incorporate basic concepts of programming, problem solving, and programming logic to teach a mastery of Visual C# at an introductory level.
Author : Leonard Gilman
Publisher :
Page : 388 pages
File Size : 14,51 MB
Release : 1984
Category : APL (Computer program language)
ISBN :
Author : James A. Brown
Publisher :
Page : 470 pages
File Size : 45,34 MB
Release : 1988
Category : Computers
ISBN :
For Jr/Sr level intro to APL and comparative programming languages courses. Tutorial on second generation of APL language.
Author : Brett Slatkin
Publisher : Pearson Education
Page : 251 pages
File Size : 41,87 MB
Release : 2015
Category : Computers
ISBN : 0134034287
Effective Python will help students harness the full power of Python to write exceptionally robust, efficient, maintainable, and well-performing code. Utilizing the concise, scenario-driven style pioneered in Scott Meyers's best-selling Effective C++, Brett Slatkin brings together 53 Python best practices, tips, shortcuts, and realistic code examples from expert programmers. Each section contains specific, actionable guidelines organized into items, each with carefully worded advice supported by detailed technical arguments and illuminating examples.
Author : Julia Case Bradley
Publisher : Irwin Professional Publishing
Page : 0 pages
File Size : 47,50 MB
Release : 2002
Category : BASIC (Computer program language)
ISBN : 9780072513813
New to this Edition: added coverage of Object-Oriented-Programming, coverage of new features in Visual Basic 6.0, expanded and reorganized sections, coding standards conform to new Microsoft guidelines, and Visual Basic 6.0 working model.
Author : George Springer
Publisher :
Page : 344 pages
File Size : 46,35 MB
Release : 1990
Category : Computer programming
ISBN :
This is the first introduction to computer programming text to focus on functional programming which is not too mathematically rigorous for freshmen. The text features an introduction to the Scheme programming language and real-world examples and exercises which are easy to follow and learn from.
Author : A. Abeillé
Publisher : Springer Science & Business Media
Page : 442 pages
File Size : 26,55 MB
Release : 2003-09-30
Category : Psychology
ISBN : 9781402013348
This book provides a state of the art on work being done with parsed corpora. It gathers 21 papers on building and using parsed corpora raising many relevant questions, and deals with a variety of languages and a variety of corpora. It is for those working in linguistics, computational linguistics, natural language, syntax, and grammar.
Author : Jeff Knupp
Publisher : Jeff Knupp
Page : 105 pages
File Size : 41,48 MB
Release : 2013-02-10
Category : Computers
ISBN :
The "Writing Idiomatic Python" book is finally here! Chock full of code samples, you'll learn the "Pythonic" way to accomplish common tasks. Each idiom comes with a detailed description, example code showing the "wrong" way to do it, and code for the idiomatic, "Pythonic" alternative. *This version of the book is for Python 3. There is also a Python 2.7+ version available.* "Writing Idiomatic Python" contains the most common and important Python idioms in a format that maximizes identification and understanding. Each idiom is presented as a recommendation to write some commonly used piece of code. It is followed by an explanation of why the idiom is important. It also contains two code samples: the "Harmful" way to write it and the "Idiomatic" way. * The "Harmful" way helps you identify the idiom in your own code. * The "Idiomatic" way shows you how to easily translate that code into idiomatic Python. This book is perfect for you: * If you're coming to Python from another programming language * If you're learning Python as a first programming language * If you're looking to increase the readability, maintainability, and correctness of your Python code What is "Idiomatic" Python? Every programming language has its own idioms. Programming language idioms are nothing more than the generally accepted way of writing a certain piece of code. Consistently writing idiomatic code has a number of important benefits: * Others can read and understand your code easily * Others can maintain and enhance your code with minimal effort * Your code will contain fewer bugs * Your code will teach others to write correct code without any effort on your part