توضیحاتی در مورد کتاب :
Python Software Foundation, 2005, -116 pp.
Python یک زبان برنامه نویسی قدرتمند و آسان برای یادگیری است. دارای ساختارهای داده ای کارآمد در سطح بالا و یک رویکرد ساده اما موثر برای برنامه نویسی شی گرا. نحو زیبا و تایپ پویا پایتون، همراه با ماهیت تفسیری آن، آن را به زبانی ایده آل برای اسکریپت نویسی و توسعه سریع برنامه در بسیاری از زمینه ها در اکثر پلتفرم ها تبدیل کرده است.
مفسر پایتون و کتابخانه استاندارد گسترده بهصورت منبع یا باینری برای همه پلتفرمهای اصلی از وبسایت پایتون http://www.python.org/ آزادانه در دسترس هستند و ممکن است آزادانه توزیع شوند. همین سایت همچنین حاوی توزیعها و نشانگرهای بسیاری از ماژولها، برنامهها و ابزارهای رایگان شخص ثالث پایتون، و اسناد اضافی است.
مفسر Python به راحتی با توابع و انواع دادههای جدید پیادهسازی شده در C یا C++ (یا زبانهای دیگر) گسترش مییابد. قابل فراخوانی از C). Python همچنین به عنوان یک زبان افزونه برای برنامه های کاربردی قابل تنظیم مناسب است.
این آموزش خواننده را به طور غیر رسمی با مفاهیم و ویژگی های اساسی زبان و سیستم پایتون آشنا می کند. داشتن یک مفسر پایتون مفید برای تجربه عملی کمک می کند، اما همه مثال ها مستقل هستند، بنابراین می توان آموزش را به صورت آفلاین نیز خواند.
برای توضیح اشیاء و ماژول های استاندارد، به پایتون مراجعه کنید. سند مرجع کتابخانه کتابچه راهنمای مرجع پایتون تعریف رسمی تری از زبان ارائه می دهد. برای نوشتن برنامه های افزودنی در C یا C++، Extending and Embedding the Python Interpreter and Python/C API Reference را بخوانید. همچنین چندین کتاب وجود دارد که به طور عمیق پایتون را پوشش میدهد.
این آموزش سعی نمیکند جامع باشد و تک تک ویژگیها یا حتی هر ویژگی رایج مورد استفاده را پوشش دهد. در عوض، بسیاری از قابل توجه ترین ویژگی های پایتون را معرفی می کند و به شما ایده خوبی از طعم و سبک زبان می دهد. پس از خواندن آن، میتوانید ماژولها و برنامههای پایتون را بخوانید و بنویسید، و آماده خواهید بود تا در مورد ماژولهای مختلف کتابخانه Python که در مرجع کتابخانه Python توضیح داده شده است، اطلاعات بیشتری کسب کنید.
اشتهایتان را تحریک کنید 1
با استفاده از مترجم پایتون
معرفی غیررسمی به پایتون
ابزارهای جریان کنترل بیشتر
ساختارهای داده
ماژول ها
ورودی و خروجی
خطاها و استثناها
کلاسها
گشت مختصر کتابخانه استاندارد
گشت مختصر کتابخانه استاندارد - قسمت دوم
اکنون چه می شود؟
یک ویرایش تعاملی ورودی و جایگزینی تاریخچه
B محاسبات ممیز شناور: مسائل و محدودیت ها
C تاریخچه و مجوز
واژه نامه D
توضیحاتی در مورد کتاب به زبان اصلی :
Python Software Foundation, 2005, -116 pp.
Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms.
The Python interpreter and the extensive standard library are freely available in source or binary form for all major platforms from the Python Web site, http://www.python.org/, and may be freely distributed. The same site also contains distributions of and pointers to many free third party Python modules, programs and tools, and additional documentation.
The Python interpreter is easily extended with new functions and data types implemented in C or C++ (or other languages callable from C). Python is also suitable as an extension language for customizable applications.
This tutorial introduces the reader informally to the basic concepts and features of the Python language and system. It helps to have a Python interpreter handy for hands-on experience, but all examples are self-contained, so the tutorial can be read off-line as well.
For a description of standard objects and modules, see the Python Library Reference document. The Python Reference Manual gives a more formal definition of the language. To write extensions in C or C++, read Extending and Embedding the Python Interpreter and Python/C API Reference. There are also several books covering Python in depth.
This tutorial does not attempt to be comprehensive and cover every single feature, or even every commonly used feature. Instead, it introduces many of Python’s most noteworthy features, and will give you a good idea of the language’s flavor and style. After reading it, you will be able to read and write Python modules and programs, and you will be ready to learn more about the various Python library modules described in the Python Library Reference.
Whetting Your Appetite 1
Using the Python Interpreter
An Informal Introduction to Python
More Control Flow Tools
Data Structures
Modules
Input and Output
Errors and Exceptions
Classes
Brief Tour of the Standard Library
Brief Tour of the Standard Library – Part II
What Now?
A Interactive Input Editing and History Substitution
B Floating Point Arithmetic: Issues and Limitations
C History and License
D Glossary