Cerca
Heus ací els resultats de la cerca.
Noms de pàgina coincidents:
- 1.1 Classes, Instances, Attributes, Methods — introduction
- 1.2 Working with class and instance data – instance variables
- 2.1 Python core syntax
- 2.2 Inheritance and polymorphism — Inheritance as a pillar of OOP
- 2.3 Extended function argument syntax
- 2.4 Decorators
- 2.5 Different faces of Python methods
- 2.6 Abstract classes
- 2.7 Encapsulation
- 2.8 Composition vs Inheritance - two ways to the same destination
- 2.9 Inheriting properties from built-in classes
- 3.1 Advanced techniques of creating and serving exceptions
- 4.1 Shallow and deep copy operations
- 4.2 Serialization of Python objects using the pickle module
- 4.3 Making Python objects persistent using the shelve module
- 5.1 Metaprogramming
- 1.1 What is PEP?
- 2.1 PEP 20 – The Zen of Python
- 3.1 PEP 8 – Introduction
- 4.1 PEP 257 – Docstring Conventions
- Python Professional Course Series: GUI Programming
- 1.2 Let TkInter speak!
- 1.3 Settling widgets in the window's interior
- 1.4 Coloring your widgets
- 1.5 A simple GUI application
- 1.6 Events and how to handle them
- 1.7 Visiting widgets’ properties
- 1.8 Interacting with widget methods
- 1.9 Looking at variables
- 2.1 A small lexicon of widgets - Part 1
- 2.2 A small lexicon of widgets - Part 2
- 2.3 A small lexicon of widgets - Part 3
- 2.4 Shaping the main window and conversing with the user
- 2.5 Working with the Canvas
- 1.1 Python Professional Course Series: RESTful APIs
- 1.2 How to use sockets in Python
- 1.3 JSON – our new friend
- 1.4 Talking to JSON in Python
- 1.5 What is XML and why do we prefer to use JSON?
- 1.6 Making life easier with the requests module
- 1.7 Four magic letters: CRUD
- 2.1 Python Professional Course Series: Lab & Assessment
- 1.1 SQLite
- 2.1 File processing - XML files
- 3.1 The CSV module in Python
- 4.1 Logging in Python
- 5.1 The configparser module
Resultats de text complet:
- 4.1 PEP 257 – Docstring Conventions @info:cursos:pue:python-pcpp1:m2
- = 4.1 PEP 257 – Docstring Conventions == What is PEP 257? PEP 257 is a document created as part of the... to standardize the high-level structure of docstrings. It outlines the **conventions**, best practices, and semantics (not laws or regulations!) associated with documenting Python code using docstrings. In short, it tries
- 3.1 PEP 8 – Introduction @info:cursos:pue:python-pcpp1:m2
- = 3.1 PEP 8 – Introduction As mentioned earlier, PEP 8 is a document that provides coding conventions (code style guide) for Python code. ... le, and more efficient. Even though some programming projects may adopt their own style guidelines (in which case such project-specific guidelines may be
- 2.1 PEP 20 – The Zen of Python @info:cursos:pue:python-pcpp1:m2
- of 19 aphorisms, which reflect the philosophy behind Python, its guiding principles, and design. Tim Peters, a long time major contributor to the Python programming language and Python community, wrote this 19-lin
- 1.7 Four magic letters: CRUD @info:cursos:pue:python-pcpp1:m4
- = 1.7 Four magic letters: CRUD == Entering a non-existing/malformed address We’ve reached the point in which we are ready to gather all new facts and tools and glue all these pieces into one functiona
- 2.3 A small lexicon of widgets - Part 3 @info:cursos:pue:python-pcpp1:m3
- all lexicon of widgets - Part 3 There are two remaining widgets we want to tell you about – the first one is just a widget, while the second is, in fact, a **set of cooperating widgets**. The ''Entry'' widget not only presents a line of text, but i
- 3.1 Advanced techniques of creating and serving exceptions @info:cursos:pue:python-pcpp1:m1
- = 3.1 Advanced techniques of creating and serving exceptions In this module, we'll talk about Python exceptions – objects that represent errors which occur during the execution of a program that disrupts the nor
- 2.4 Decorators @info:cursos:pue:python-pcpp1:m1
- sses. The decorator's operation is based on wrapping the original function with a new "decorating" function (or class), hence the name "decoration". This is done by passing the original function (i.e., the **decorated** f
- 1.1 SQLite @info:cursos:pue:python-pcpp1:m5
- ocial applications such as Facebook, Twitter, and Instagram are very popular. Every day many people create new accounts, and existing users add or share different content. You’ve sur... Do you know how that’s possible? Data is simply information about users, the contents of their posts, and comments. The data are all kinds of information that we can send to the applicat
- 5.1 Metaprogramming @info:cursos:pue:python-pcpp1:m1
- = 5.1 Metaprogramming == Introduction to metaclasses Metaprogramming is a programming technique in which computer programs have the ability to modify their own or other
- 2.9 Inheriting properties from built-in classes @info:cursos:pue:python-pcpp1:m1
- = 2.9 Inheriting properties from built-in classes Python gives you the ability to create a class that inherits properties from any Python built-in class i
- 2.2 Inheritance and polymorphism — Inheritance as a pillar of OOP @info:cursos:pue:python-pcpp1:m1
- = 2.2 Inheritance and polymorphism — Inheritance as a pillar of OOP Inheritance is one of the fundamental concepts of object oriented programming, and expresses the fundamental relationships bet
- 4.1 Shallow and deep copy operations @info:cursos:pue:python-pcpp1:m1
- = 4.1 Shallow and deep copy operations == Copying objects using shallow and deep operations In this module, you’ll learn how to copy Python objects. Specifically, y... and deep copies of the objects. It’s hard to imagine writing a piece of Python code that performs any
- Python Professional Course Series: GUI Programming @info:cursos:pue:python-pcpp1:m3
- = Python Professional Course Series: GUI Programming == What is GUI? GUI is an acronym. Moreover, it’s... ass of acronyms which plays a very important role in the IT industry. Okay, that’s enough jokes about TLA’s for one course, all the more that GUI is prese... tablet, computer, TV set, fridge, oven, even washing machine or heating controller – all these things
- 2.4 Shaping the main window and conversing with the user @info:cursos:pue:python-pcpp1:m3
- = 2.4 Shaping the main window and conversing with the user The main window is a very specific construct, as its fate is shared a
- 1.6 Events and how to handle them @info:cursos:pue:python-pcpp1:m3
- = 1.6 Events and how to handle them == Event handling As you already know, events are the fuel which p... event manager**, which is responsible for dispatching them to all the application components. This als... callbacks, which makes you responsible for preparing the proper reactions to the user’s actions. Now... y. We’ll also show you how the events are able to influence a widget’s state, and how you control the