Foro Wanako1
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Foro Wanako1

Programas Gratuitos, Desatendidos y Mucho más!!!
 
PortalPortal  ÍndiceÍndice  BuscarBuscar  Últimas imágenesÚltimas imágenes  ConectarseConectarse  RegistrarseRegistrarse  
Buscar
 
 

Resultados por:
 
Rechercher Búsqueda avanzada
Los posteadores más activos del mes
ℛeℙ@¢ᴋ€r
Python - Beyond the  Basics Vote_lcapPython - Beyond the  Basics Voting_barPython - Beyond the  Basics Vote_rcap 
ПΣӨƧӨFƬ
Python - Beyond the  Basics Vote_lcapPython - Beyond the  Basics Voting_barPython - Beyond the  Basics Vote_rcap 
tano1221
Python - Beyond the  Basics Vote_lcapPython - Beyond the  Basics Voting_barPython - Beyond the  Basics Vote_rcap 
大†Shinegumi†大
Python - Beyond the  Basics Vote_lcapPython - Beyond the  Basics Voting_barPython - Beyond the  Basics Vote_rcap 
Julio 2024
LunMarMiérJueVieSábDom
1234567
891011121314
15161718192021
22232425262728
293031    
CalendarioCalendario
Últimos temas
» CCleaner Professional Plus 6.25.0.1 Multilingual
Python - Beyond the  Basics EmptyAyer a las 10:50 pm por tano1221

» K-Lite Codec Pack 18.4.5 Basic/Standard/Full/Mega
Python - Beyond the  Basics EmptyAyer a las 10:37 pm por tano1221

» VueScan Pro 9.8.35 + OCR
Python - Beyond the  Basics EmptyAyer a las 10:21 pm por tano1221

» Total Uninstaller 2024 v3.0.0.789 Multilingual
Python - Beyond the  Basics EmptyAyer a las 10:18 pm por tano1221

» Reallusion Cartoon Animator v5.24.3026.1 Multilingual
Python - Beyond the  Basics EmptyAyer a las 7:06 pm por 大†Shinegumi†大

» SoftMaker FlexiPDF Professional 2022.311.0614 Multilingual
Python - Beyond the  Basics EmptyAyer a las 7:04 pm por 大†Shinegumi†大

» EaseUS PDF Editor Pro 6.1.1.41 Build 06/28/2024 Multilingual
Python - Beyond the  Basics EmptyAyer a las 7:03 pm por 大†Shinegumi†大

» Fullyworked TECH Tools Pro 2024 v1.1.43.0
Python - Beyond the  Basics EmptyAyer a las 7:01 pm por 大†Shinegumi†大

» Steinberg SpectraLayers Pro 11.0.10 (x64)
Python - Beyond the  Basics EmptyAyer a las 1:42 pm por ПΣӨƧӨFƬ

Sondeo
Visita de Paises
free counters
Free counters

Comparte | 
 

 Python - Beyond the Basics

Ver el tema anterior Ver el tema siguiente Ir abajo 
AutorMensaje
Invitado
Invitado



Python - Beyond the  Basics Empty
MensajeTema: Python - Beyond the Basics   Python - Beyond the  Basics EmptyMar Mar 17, 2020 7:41 am

Python - Beyond the  Basics 1321d300adaee280f2a405040b26c53f

Python - Beyond the Basics
WEBRip | English | MP4 + Project files | 1024 x 768 | AVC ~225 kbps | 15 fps
AAC | 117 Kbps | 44.1 KHz | 2 channels | 7h 22mn | 1.37 GB
Genre: eLearning Video / Development, Programming
Python - Beyond the Basics deepens and broadens your knowledge of Python, a dynamic language popular for web development, big data, science, and scripting.

Python - Beyond the Basics builds directly on the foundations laid in our introductory Python course, Python Fundamentals. Python is a great dynamic language for web development, big data, science, and scripting. In this course we add breadth and depth to your Python skills, exploring the topics you'll need to create robust and readable applications of any size. On completing this course, you'll be familiar with the majority of Python techniques and constructs used in Python programs. Crucially, we'll also advise you on when - and when not - to use the different tools available in Python to best effect, to maximize the quality of your code, your productivity, and the joy inherent in coding in Python.

Content:

Prerequisites
- Prerequisites

Organizing Larger Programs
- Packages
- Imports From sys.path
- Implementing Packages
- Subpackages
- Example: A Full Program
- Relative Imports
- Controlling Imports With __all__
- Namespace Packages
- Executable Directories
- Recommended Layout
- Duck Tails: Modules Are Singletons
- Summary

Beyond Basic Functions
- Function Review
- Callable Instances
- Classes Are Callable
- Conditional Expressions
- Lambdas
- Detecting Callable Objects
- Extended Formal Argument Syntax
- Extended Call Syntax
- Forwarding Arguments
- Duck Tail: Transposing Tables
- Summary

Closures and Decorators
- Local Functions
- Returning Functions From Functions
- Closures and Nested Scopes
- Function Factories
- The Nonlocal Keyword
- Function Decorators
- A First Decorator Example
- What Can Be a Decorator?
- Instances as Decorators
- Multiple Decorators
- Decorating Methods
- functools.wraps()
- Duck Tails: Validating Arguments
- Summary

Properties and Class Methods
- Class Attributes
- Static Methods
- Class Methods
- Static Methods With Inheritance
- Class Methods With Inheritance
- Properties
- Properties and Inheritance
- Duck Tail: The Template Method Pattern
- Summary

Strings and Representations
- Two String Representations
- repr()
- str()
- When Are the Representations Used?
- Interaction With format()
- reprlib
- asciii(), ord(), and chr()
- Duck Tail: Bigger Isn't Always Better
- Summary

Numeric and Scalar Types
- Reviewing int and float
- The Decimal Module and the Decimal Type
- Rational Numbers With the Fraction Type
- The Complex Type and the cmath Module
- Built-In Numeric Functions abs() and round()
- Number Base Conversions
- The datetime Module and date Type
- The time Type
- The datetime Type
- Durations With the timedelta Type
- Arithmetic With datetime
- Time Zones
- Duck Tail: Floating Point Versus Rational Numbers
- Summary

Iterables and Iteration
- Multi-Input Comprehensions
- Nested Comprehensions
- The map() Function
- Multiple Input Sequences
- map() Versus Comprehensions
- The filter() Function
- The functools.reduce() Function
- Combining map() and reduce()
- The Iteration Protocols
- Putting the Protocols Together
- Alternative Iterable Protocol
- Extended iter() Format
- Duck Tail: Iterator for Streamed Sensor Data
- Summary

Inheritance and Subtype Polymorphism
- Inheritance Overview
- A Realistic Example: SortedList
- The Built-In isinstance() Function
- The Built-In issubclass() Function
- Multiple Inheritance
- Details of Multiple Inheritance
- Method Resolution Order
- How is Method Resolution Order Calculated?
- The Built-In super() Function
- Class-Bound Super Proxies
- Instance-Bound Super Proxies
- Calling super() Without Arguments
- SortedIntList Explained
- The Object Class
- Duck Tail: Inheritance for Implementation Sharing
- Summary

Implementing Collections
- Collection Protocol Overview
- Collection Construction
- The Container Protocol
- The Sized Protocol
- The Iterable Protocol
- The Sequence Protocol: Indexing
- The Sequence Protocol: Slicing
- Comprehensible Test Results With __repr__()
- Implementing Equality and Inequality
- The Sequence Protocol: Reversing
- The Sequence Protocol: index()
- The Sequence Protocol: count()
- Improving Performance From O(N) to O(log n)
- Refactoring to Avoid Don't Repeat Yourself (DRY)
- Checking Protocol Implementations
- The Sequence Protocol: Concatenation and Repetition
- The Set Protocol
- Duck Tail: Making a Mutable Set
- Summary

Exceptions and Errors
- Always Specify an Exception Type
- The Standard Exception Hierarchy
- Exception Payloads
- Defining New Exceptions
- Chaining Exceptions
- Traceback Objects
- Assertions: Internal Invariants
- Assertions: Class Invariants
- Assertions: Performance
- Duck Tail: Preconditions and Postconditions
- Summary

Defining Context Managers
- What is a Context Manager?
- The Context Manager Protocol
- A First Context Manager Example
- __enter__()
- __exit__()
- __exit__() and Exception Propagation
- The with-statement Expansion
- contextlib.contextmanager
- Multiple Context Managers
- Don't Pass a List!
- Duck Tail: Context Managers for Transactions
- Summary

Introspection
- Object Types in Depth
- Introspecting Objects
- Introspecting Scopes
- The Python Standard Library Inspect Module
- Duck Tail: An Object Introspection Tool
- Summary

General
Complete name : 07_07-The datetime Module and date Type.mp4
Format : MPEG-4
Format profile : Base Media / Version 2
Codec ID : mp42
File size : 13.2 MiB
Duration : 5mn 21s
Overall bit rate mode : Variable
Overall bit rate : 344 Kbps
Encoded date : UTC 2014-07-10 04:26:08
Tagged date : UTC 2014-07-10 04:26:28
Writing application : HandBrake 0.9.8 2012071700

Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : Baseline@L3.1
Format settings, CABAC : No
Format settings, ReFrames : 2 frames
Format settings, GOP : M=1, N=50
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 5mn 21s
Duration_FirstFrame : 67ms
Bit rate : 225 Kbps
Width : 1 024 pixels
Height : 768 pixels
Display aspect ratio : 4:3
Frame rate mode : Constant
Frame rate : 15.000 fps
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.019
Stream size : 8.63 MiB (65%)
Writing library : x264 core 120
Encoding settings : cabac=0 / ref=2 / deblock=1:0:0 / analyse=0x1:0x111 / me=umh / subme=6 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=0 / 8x8dct=0 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=12 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=0 / weightp=0 / keyint=50 / keyint_min=15 / scenecut=40 / intra_refresh=0 / rc_lookahead=40 / rc=crf / mbtree=1 / crf=20.0 / qcomp=0.60 / qpmin=3 / qpmax=69 / qpstep=4 / ip_ratio=1.40 / aq=1:1.00
Encoded date : UTC 2014-07-10 04:26:08
Tagged date : UTC 2014-07-10 04:26:28
Color range : Limited
Color primaries : BT.709
Transfer characteristics : BT.709
Matrix coefficients : BT.709

Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : 40
Duration : 5mn 21s
Bit rate mode : Variable
Bit rate : 117 Kbps
Maximum bit rate : 149 Kbps
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 44.1 KHz
Compression mode : Lossy
Stream size : 4.48 MiB (34%)
Title : Stereo
Language : English
Encoded date : UTC 2014-07-10 04:26:08
Tagged date : UTC 2014-07-10 04:26:28

Screenshots

Python - Beyond the  Basics F934e0f8499f2de7b7519112b7086579
Python - Beyond the  Basics 3061a146aa01f61dfca72f5773662ccc
Python - Beyond the  Basics 99b58dee372fa6c6fd993243fd63db10

Download link:
Citación :
rapidgator_net:
https://rapidgator.net/file/b71ca7d32bd34063b6fa5bdff1328c24/16w76.Python..Beyond.the.Basics.part01.rar.html
https://rapidgator.net/file/c8fcaaafd1cd001de0bb689a067e6409/16w76.Python..Beyond.the.Basics.part02.rar.html
https://rapidgator.net/file/bc5559b09b0a90e57c2b2120f44dab5b/16w76.Python..Beyond.the.Basics.part03.rar.html
https://rapidgator.net/file/79b05830398eb59c73c4c110dc629894/16w76.Python..Beyond.the.Basics.part04.rar.html
https://rapidgator.net/file/cea36a7555196f60820ef99f065f589c/16w76.Python..Beyond.the.Basics.part05.rar.html
https://rapidgator.net/file/80312f1e37038a6cc606ab74be433c5d/16w76.Python..Beyond.the.Basics.part06.rar.html
https://rapidgator.net/file/4c0578a7a9e0fccc671c68e1a1be5397/16w76.Python..Beyond.the.Basics.part07.rar.html
https://rapidgator.net/file/c82c123acdb5c2bf6b6f8cff905345db/16w76.Python..Beyond.the.Basics.part08.rar.html
https://rapidgator.net/file/bb2288d082c99087a5ccd81d7ac182c8/16w76.Python..Beyond.the.Basics.part09.rar.html
https://rapidgator.net/file/7a654a2791d8e611fac8284f2b4ef8f1/16w76.Python..Beyond.the.Basics.part10.rar.html

nitroflare_com:
https://nitroflare.com/view/0DABEB65BBE94DF/16w76.Python..Beyond.the.Basics.part01.rar
https://nitroflare.com/view/BC12D21DB700D4B/16w76.Python..Beyond.the.Basics.part02.rar
https://nitroflare.com/view/ED826274277876C/16w76.Python..Beyond.the.Basics.part03.rar
https://nitroflare.com/view/EE1591E91C6EE27/16w76.Python..Beyond.the.Basics.part04.rar
https://nitroflare.com/view/B1A87CF8CE5E0F8/16w76.Python..Beyond.the.Basics.part05.rar
https://nitroflare.com/view/B5FC83DFCC29C5D/16w76.Python..Beyond.the.Basics.part06.rar
https://nitroflare.com/view/E2D5A3E102B80F6/16w76.Python..Beyond.the.Basics.part07.rar
https://nitroflare.com/view/71473356F677EAF/16w76.Python..Beyond.the.Basics.part08.rar
https://nitroflare.com/view/4520C99B14EF315/16w76.Python..Beyond.the.Basics.part09.rar
https://nitroflare.com/view/191719C488BF5CE/16w76.Python..Beyond.the.Basics.part10.rar

uploadgig_com:
http://uploadgig.com/file/download/3F1d555655ad97d9/16w76.Python..Beyond.the.Basics.part01.rar
http://uploadgig.com/file/download/8b3e89545d33e70d/16w76.Python..Beyond.the.Basics.part02.rar
http://uploadgig.com/file/download/2EFa130f2187fcb5/16w76.Python..Beyond.the.Basics.part03.rar
http://uploadgig.com/file/download/f37477f159d341D1/16w76.Python..Beyond.the.Basics.part04.rar
http://uploadgig.com/file/download/83aa83258AdD0355/16w76.Python..Beyond.the.Basics.part05.rar
http://uploadgig.com/file/download/1827f37d378D09f5/16w76.Python..Beyond.the.Basics.part06.rar
http://uploadgig.com/file/download/8639407eB223c891/16w76.Python..Beyond.the.Basics.part07.rar
http://uploadgig.com/file/download/26dce0225E0C7Bb3/16w76.Python..Beyond.the.Basics.part08.rar
http://uploadgig.com/file/download/cb5a081e37469F36/16w76.Python..Beyond.the.Basics.part09.rar
http://uploadgig.com/file/download/60ac57af32051046/16w76.Python..Beyond.the.Basics.part10.rar

Links are Interchangeable - No Password - Single Extraction
Volver arriba Ir abajo
 

Python - Beyond the Basics

Ver el tema anterior Ver el tema siguiente Volver arriba 
Página 1 de 1.

 Temas similares

-
» Complete Python programming Python Basics to Advanced Python
» Python for Beginners: Learn Python Basics (Python 3)
» Basics of Python & arcpy , the Python library of ESRI ArcGIS
» Python Programming Fundamentals : Learn Python Basics
» Python Programming: Learn basics of Python

Permisos de este foro:No puedes responder a temas en este foro.
Foro Wanako1 :: Programas o Aplicaciónes :: Ayuda, Tutoriales-