Cerca
Heus ací els resultats de la cerca.
Resultats de text complet:
- 2.1 PEP 20 – The Zen of Python @info:cursos:pue:python-pcpp1:m2
- o) </code> Let’s assume that the programmer has forgotten to convert the value assigned to the number ... Well, yes, but many times programmers neglect or forget about this simple habit, be it because they tru... these things – writing your code – you may have forgotten the ideas or information you need to do it w... On the other hand, the aphorism tells us not to forget about the proper balance. Just as perfect is th
- 3.1 PEP 8 – Introduction @info:cursos:pue:python-pcpp1:m2
- and practices. In our case, it means we must not forget about one simple but important observation:** o... le * Documentation: https://pycodestyle.pycqa.org/en/latest/ * You can also install **autopep8** ... tting fixes. * More information: https://pypi.org/project/autopep8/ * PEP 8 online is an online P... pact on its readability. However, you should not forget it can determine its syntactic legality, too.
- 1.1 SQLite @info:cursos:pue:python-pcpp1:m5
- specification described by [[https://peps.python.org/pep-0249/|PEP 249]]. The purpose of the DB-API 2.... == sqlite3 – the TODO application Have you ever forgotten to do anything during the day? If so, it's t... ll types available in SQLite [[https://www.sqlite.org/datatype3.html|here]]. == sqlite3 – creating tab... ms our changes (the current transaction). If you forget to call it, your changes won't be visible in th
- Python Professional Course Series: GUI Programming @info:cursos:pue:python-pcpp1:m3
- terminal needed to be wired to a computer (don’t forget that the Internet had not been invented yet) an... . The first of them is the [[https://en.wikipedia.org/wiki/IBM_3270|IBM 3270]], and the second is the D... al Equipment Corporation’s [[https://en.wikipedia.org/wiki/VT100|VT100]]. Now it’s time for the second... rtant aspect of the case is a question: how do we organize computer–user interaction with such limited
- 1.6 Making life easier with the requests module @info:cursos:pue:python-pcpp1:m4
- indows user, point your browser to https://nodejs.org/en/download, download and run the Windows install... re a macOS user, go to the address https://nodejs.org/en/download, download the ''pkg'' file and run th... ser, you have to go to the address https://nodejs.org/en/download/package-manager and obtain some more ... by HTTP are gathered here: [[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes]] The requests mo
- 4.1 PEP 257 – Docstring Conventions @info:cursos:pue:python-pcpp1:m2
- enting code important? Essentially, we must not forget this simple rule by Guido van Rossum: "**Code i... explained and described in [[https://peps.python.org/pep-0287/|PEP 287]]. The second example uses the ... of them are supported by [[https://www.sphinx-doc.org/en/master/usage/extensions/example_google.html|Sp
- 1.4 Coloring your widgets @info:cursos:pue:python-pcpp1:m3
- bout them on the example of ''Button'' but don't forget that these ways are universal and can be used v... Do you think it's not too much? Maybe, but don't forget that you mix three different colors (so-called ... se** * #FF00FF is **violet** * ... Please, forgive us that we made that list so short. To tell th
- 1.2 How to use sockets in Python @info:cursos:pue:python-pcpp1:m4
- he address of a WWW site** (e.g., pythoninstitute.org) using the standard ''input()'' function and **fe... name of the server** (like //www.pythoninstitute.org //, but without the leading http:%%//%%) * it c... we don't want to go into details. We hope you'll forgive us. If you really want to induce such an exce
- 2.1 Python core syntax @info:cursos:pue:python-pcpp1:m1
- or more information, refer to https://docs.python.org/3/reference/datamodel.html#special-method-names. ... sks may start to look simpler. Of course, don’t forget to check the type of the objects passed as argu
- 1.2 Let TkInter speak! @info:cursos:pue:python-pcpp1:m3
- o be a parameterless function of any name. Don't forget that the function will be invoked, not by us, b... you'll probably agree with that. We ask you for forgiveness – this is only an example, obviously too s
- 1.5 A simple GUI application @info:cursos:pue:python-pcpp1:m3
- the ''IntVar'' class are used by ''tkinter'' to **organize internal communication between different wid... ound to the same object creates the group. Don’t forget that! * The ''value'' argument distinguishes
- 1.1 Python Professional Course Series: RESTful APIs @info:cursos:pue:python-pcpp1:m4
- t domains Initially, BSD sockets were designed to organize communication in two different domains (not ... nfused with internet domains like pythoninstitute.org - these terms have nothing in common). The two do
- 1.3 JSON – our new friend @info:cursos:pue:python-pcpp1:m4
- n available here: [[http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf]] If you... if the letters are upper- or lower-case). Don't forget that JSON strings **cannot be split over multip
- 4.1 Logging in Python @info:cursos:pue:python-pcpp1:m5
- tributes can be found here [[[https://docs.python.org/3/library/logging.html#logrecord-attributes]]]. ... the message is saved there. Do you know what we forgot? Your handler hasn't created a formatter. You'l
- 1.1 Classes, Instances, Attributes, Methods — introduction @info:cursos:pue:python-pcpp1:m1
- asses are instances. Why is everything in Python organized as objects? Because an object is a very us