FileMood

Download Ernesti J., Kaiser P. - Python 3. The Comprehensive Guide to Hands-On Python Programming - 2022

Ernesti Kaiser Python The Comprehensive Guide to Hands On Python Programming 2022

Name

Ernesti J., Kaiser P. - Python 3. The Comprehensive Guide to Hands-On Python Programming - 2022

 DOWNLOAD Copy Link

Total Size

23.9 MB

Total Files

302

Last Seen

2025-01-08 00:02

Hash

0476BD3E20E3236958AF579E6E04020899E59E64

/.../04_The_Path_to_the_First_Program/

example_01_guessing_numbers.py

0.3 KB

/.../05_Control_Structures/

example_01_guessing_numbers_with_while.py

0.2 KB

example_02_guessing_numbers_with_break.py

0.3 KB

example_03_guessing_numbers_with_break_and_else.py

0.3 KB

example_04_factorial.py

0.2 KB

example_05_factorial_with_continue.py

0.3 KB

example_06_factorial_with_for.py

0.3 KB

example_07_guessing_numbers_with_assignment_expression.py

0.3 KB

/Code/06_Files/

coffee.bmp

1.4 MB

dictionary.txt

0.1 KB

example_01_reading_files.py

0.1 KB

example_02_dictionary.py

0.4 KB

example_03_writing_files.py

0.2 KB

example_04_bitmap.py

0.3 KB

output.txt

0.1 KB

/Code/17_Functions/

example_01_factorial_with_print Kopie.py

0.2 KB

example_01_factorial_with_print.py

0.2 KB

example_02_factorial_with_return.py

0.2 KB

example_03_factorial_with_return_2.py

0.4 KB

example_04_factorial_of_absolute_value.py

0.3 KB

/.../18_Modules_and_Packages/__pycache__/

mathshelper.cpython-39.pyc

0.5 KB

/.../18_Modules_and_Packages/

example_01_import.py

0.1 KB

example_02_finder_and_loader.py

1.1 KB

mathshelper.py

0.1 KB

testfile.txt

0.0 KB

/.../19_Object-Oriented_Programming/

example_01_account_without_oop.py

2.1 KB

example_02_account_with_oop.py

2.1 KB

example_03_inheritance.py

0.3 KB

example_04_overriding_methods.py

0.4 KB

example_05_overriding_methods_2.py

0.5 KB

example_06_account_with_inheritance.py

5.0 KB

example_07_property_attributes.py

0.7 KB

example_08_static_methods.py

2.1 KB

example_09_class_methods.py

0.3 KB

example_10_class_attributes.py

0.1 KB

example_11_inheriting_built-in_data_types.py

1.0 KB

example_12_overloading_operators.py

1.0 KB

example_13_overloading_operators_2.py

0.7 KB

/.../20_Exception_Handling/

example_01_account_balance_error.py

0.9 KB

/.../21_Generators_and_Iterators/

example_01_generators.py

0.6 KB

example_02_subgenerators.py

0.3 KB

example_03_subgenerators_with_return.py

0.5 KB

example_04_traversing_a_tree.py

0.7 KB

example_05_fibonacci_iterator.py

0.6 KB

example_06_golden_ratio_iterator.py

0.6 KB

example_07_fibonacci_iterator_with_generator.py

0.4 KB

example_08_fibonacci_iterator_multiple.py

0.9 KB

example_09_squares.py

0.4 KB

/.../22_Context_Manager/

example_01_logging.py

0.5 KB

example_02_optional_contexts.py

0.4 KB

example_03_functions_as_context_managers.py

0.4 KB

logfile.txt

0.0 KB

out.txt

0.0 KB

/Code/23_Decorators/

example_01_timing_with_wrapper.py

0.7 KB

example_02_timing_with_decorator.py

0.7 KB

example_03_cache_decorator.py

0.7 KB

example_04_simplifying_method_interfaces.py

0.5 KB

/Code/24_Annotations/

example_01_static_type_checking.py

0.4 KB

/.../25_Structural_Pattern_Matching/

example_01_status_codes.py

0.5 KB

example_02_status_codes_with_or_pattern.py

0.4 KB

example_03_pattern_with_type_checking.py

0.4 KB

example_04_conditions_for_matches.py

0.4 KB

example_05_capture_pattern.py

0.5 KB

example_06_print_list.py

0.4 KB

example_07_range_plus_plus.py

0.7 KB

example_08_adresses.py

1.2 KB

example_09_matching_attributes_by_name.py

1.5 KB

example_10_matching_attributes_by_position.py

1.5 KB

example_11_mixed_matching_of_attributes.py

0.3 KB

/Code/26_Mathematics/

example_01_hashlib_file_comparison.py

0.3 KB

example_02_hashlib_file_comparison_with_update.py

0.2 KB

example_03_password.py

0.2 KB

file1.txt

0.0 KB

file2.txt

0.0 KB

/.../27_Screen_Outputs_and_Logging/

example_01_logging.py

0.3 KB

example_02_logging_handler.py

0.5 KB

program.log

0.2 KB

/.../28_Regular_Expressions/

example_01_searching.py

0.3 KB

example_02_matching.py

0.9 KB

example_03_comments.py

0.6 KB

id.txt

0.1 KB

rheinwerk-publishing.html

176.5 KB

/.../29_Interface_to_Operating_System_and_Runtime_Environment/

example_01_argparse.py

0.5 KB

example_02_argparse.py

0.8 KB

/.../31.3_concurrent.futures/

example_01_thread_pool_executor.py

0.5 KB

example_02_thread_pool_executor_with.py

0.5 KB

example_03_process_pool_executor.py

0.5 KB

example_04_approximate_pi.py

0.5 KB

example_05_approximate_pi_with_threads_and_as_completed.py

0.6 KB

example_06_approximate_pi_with_processes_and_as_completed.py

0.6 KB

example_07_approximate_pi_with_wait.py

0.6 KB

example_08_approximate_pi_with_wait_and_timeout.py

0.7 KB

example_09_approximate_pi_comparison.py

0.9 KB

/.../31_Parallel_Programming/31.4.1_threading/

example_01_prime_number_check.py

0.9 KB

example_02_prime_number_check_with_locking.py

1.1 KB

example_03_shared_counter.py

0.3 KB

example_04_shared_counter_thread_safe.py

0.4 KB

/.../31_Parallel_Programming/31.4.2_multiprocessing/

example_01_prime_number_check_with_locking.py

1.1 KB

/.../31.5_Cooperative_Multitasking/

example_01_sleep.py

0.7 KB

example_02_crawler.py

1.0 KB

example_03_crawler_with_queue.py

1.3 KB

example_04_crawler_with_multiple_producers.py

1.9 KB

example_05_crawler_with_aiofiles.py

1.8 KB

example_06_crawler_with_blocking_operation.py

2.0 KB

example_07_asynchronous_generators.py

0.5 KB

/.../32_Data_Storage/32.1_XML/

dict.xml

0.3 KB

example_01_elementtree.py

0.6 KB

example_02_sax.py

1.2 KB

/.../32_Data_Storage/32.2_Databases/

example_01_sqlite_create_tables.py

0.5 KB

example_02_sqlite_write_data.py

1.1 KB

example_03_sqlite_read_data.py

0.4 KB

example_04_sqlite_adapter_and_converter.py

1.3 KB

warehouse.db

16.4 KB

/.../32_Data_Storage/32.6_CSV/

cars.csv

0.1 KB

example_01_read_csv.py

0.2 KB

example_02_read_csv_as_dict.py

0.2 KB

example_03_write_csv.py

0.3 KB

example_04_write_csv_from_dict.py

0.5 KB

example_05_sniffer.py

0.3 KB

names.csv

0.3 KB

/.../33.1_Socket-API/

example_01_udp_client.py

0.2 KB

example_01_udp_server.py

0.2 KB

example_02_tcp_client.py

0.3 KB

example_02_tcp_server.py

0.4 KB

example_03_tcp_ipv6_client.py

0.3 KB

example_03_tcp_ipv6_server.py

0.4 KB

example_04_multiplexing_client.py

0.3 KB

example_04_multiplexing_server.py

0.9 KB

example_05_object_oriented_client.py

0.3 KB

example_05_object_oriented_server.py

0.6 KB

/.../33.2_XML-RPC/

example_01_client.py

0.1 KB

example_01_server.py

0.5 KB

example_02_multicall_client.py

0.2 KB

example_02_multicall_server.py

0.5 KB

/Code/35_Email/

coffee.png

684.7 KB

example_01_pop.py

0.2 KB

example_02_imap.py

0.5 KB

example_03_email.py

0.3 KB

example_04_email_with_attachment.py

0.5 KB

example_05_email_reading.py

0.2 KB

/.../36.2_Automated_Testing/__pycache__/

fac.cpython-39.pyc

0.4 KB

/.../36.2_Automated_Testing/

example_01_doctest.py

0.9 KB

example_02_unittest.py

0.4 KB

fac.py

0.1 KB

/.../36.3_Analyzing_the_Runtime_Performance/

example_01_timeit.py

0.5 KB

example_02_profiling.py

0.4 KB

example_03_tracing.py

0.5 KB

/.../36.3_Analyzing_the_Runtime_Performance/result_tracing/

example_03_tracing.cover

0.7 KB

/Code/37_Documentation/

example_01_docstrings.py

0.4 KB

/.../38_Distributing_Python_Projects/38.2_setuptools/

setup.py

0.2 KB

swirl.py

0.2 KB

/.../38.3_cx_Freeze/

calc.py

0.1 KB

setup.py

0.2 KB

/.../38_Distributing_Python_Projects/38.5_gettext/

example_01_localization.py

0.3 KB

myprogram.po

0.2 KB

/.../38_Distributing_Python_Projects/38.5_gettext/locale/de/LC_MESSAGES/

myprogram.mo

0.2 KB

/.../40_Alternative_Interpreters_and_Compilers/40.1_numba/

example_01_numba.py

1.4 KB

/.../40_Alternative_Interpreters_and_Compilers/40.2_cython/__pycache__/

example_01_sort_python.cpython-310.pyc

0.4 KB

/.../40_Alternative_Interpreters_and_Compilers/40.2_cython/

comparison.py

1.4 KB

example_01_sort_python.py

0.2 KB

example_02_sort_cython.pyx

0.2 KB

example_03_sort_cython_2.pyx

0.2 KB

example_04_sort_cython_3.pyx

0.2 KB

example_05_sort_cython_4.pyx

0.3 KB

setup.py

0.4 KB

/.../41.2.1_A_Simple_Example/

example_01_simple_dialog.py

0.9 KB

/.../41.2.3_The_Packer/

example_01_simple_dialog_pad.py

1.0 KB

example_02_simple_dialog_fill_expand1.py

0.9 KB

example_03_simple_dialog_fill_expand2.py

1.0 KB

example_04_simple_dialog_fill_expand3.py

1.0 KB

example_05_simple_dialog_fill_expand4.py

1.0 KB

/.../41.2_Introduction_to_tkinter/41.2.4_Events/

example_01_events.py

1.6 KB

/.../41.2_Introduction_to_tkinter/41.2.5_Widgets/

example_01_button.py

0.5 KB

example_02_checkbutton_simple.py

0.6 KB

example_03_checkbutton_complex.py

1.0 KB

example_04_radiobutton.py

0.8 KB

example_05_entry.py

0.6 KB

example_06_label.py

0.4 KB

example_07_labelframe.py

1.1 KB

example_08_listbox_simple.py

0.5 KB

example_09_listbox_complex.py

0.9 KB

example_10_menu.py

1.0 KB

example_11_menu_complex.py

1.4 KB

example_12_menubutton.py

0.7 KB

example_13_optionmenu.py

0.6 KB

example_14_scrollbar.py

0.6 KB

example_15_spinbox_simple.py

0.4 KB

example_16_spinbox_complex.py

0.6 KB

example_17_text.py

0.6 KB

example_18_text_with_event.py

0.5 KB

/.../41.2.6_Drawings_-_The_Canvas_Widget/

coffee.png

684.7 KB

example_01_empty_canvas.py

0.4 KB

example_02_canvas.py

0.5 KB

example_03_arc.py

0.6 KB

example_04_image.py

0.5 KB

example_05_line.py

0.5 KB

example_06_oval.py

0.4 KB

example_07_polygon.py

0.5 KB

example_08_polygon2.py

0.5 KB

example_09_text.py

0.7 KB

example_10_window.py

0.5 KB

/.../41.2.7_Other_Modules/

example_01_scrolledtext.py

1.0 KB

example_02_messagebox.py

0.2 KB

/.../41.3.2_Basic_Concepts_Of_Qt/

example_01_enter_personal_data.py

0.4 KB

maindialog.py

6.1 KB

maindialog.ui

4.2 KB

/.../41.4_Signals_and_Slots/

example_01_enter_personal_data2.py

1.2 KB

maindialog.py

6.1 KB

maindialog.ui

4.2 KB

/.../41.6_Drawing_Functionality/

coffee.png

684.7 KB

example_01_simple_shapes.py

0.7 KB

example_02_images.py

0.7 KB

example_03_text.py

0.7 KB

example_04_gradient.py

0.7 KB

example_05_transparency.py

0.9 KB

example_06_transparency_with_gradient.py

1.1 KB

example_07_antialiasing.py

0.9 KB

example_08_transformations.py

1.3 KB

/.../41.7_Model-View_Architecture/

address_book.txt

0.2 KB

example_01_program.py

0.3 KB

model.py

1.0 KB

view.py

3.5 KB

/.../step_01_manual_outputs/news_site/

db.sqlite3

143.4 KB

manage.py

0.7 KB

/.../step_01_manual_outputs/news_site/news/

__init__.py

0.0 KB

admin.py

0.1 KB

apps.py

0.1 KB

models.py

0.5 KB

tests.py

0.1 KB

urls.py

0.2 KB

views.py

1.1 KB

/.../step_01_manual_outputs/news_site/news/migrations/

0001_initial.py

1.1 KB

__init__.py

0.0 KB

/.../step_01_manual_outputs/news_site/news_site/

__init__.py

0.0 KB

asgi.py

0.4 KB

settings.py

3.2 KB

urls.py

0.8 KB

wsgi.py

0.4 KB

/.../step_02_template_outputs/news_site/

db.sqlite3

143.4 KB

manage.py

0.7 KB

/.../step_02_template_outputs/news_site/news/

__init__.py

0.0 KB

admin.py

0.1 KB

apps.py

0.1 KB

models.py

0.5 KB

tests.py

0.1 KB

urls.py

0.2 KB

views.py

0.4 KB

/.../step_02_template_outputs/news_site/news/migrations/

0001_initial.py

1.1 KB

__init__.py

0.0 KB

/.../step_02_template_outputs/news_site/news/templates/news/

articles.html

0.7 KB

articles_detail.html

0.9 KB

/.../step_02_template_outputs/news_site/news_site/

__init__.py

0.0 KB

asgi.py

0.4 KB

settings.py

3.3 KB

urls.py

0.8 KB

wsgi.py

0.4 KB

/.../step_02_template_outputs/news_site/news_site/templates/main/

base.html

1.1 KB

/.../step_03_process_form_data/news_site/

db.sqlite3

143.4 KB

manage.py

0.7 KB

/.../step_03_process_form_data/news_site/news/

__init__.py

0.0 KB

admin.py

0.1 KB

apps.py

0.1 KB

models.py

0.5 KB

tests.py

0.1 KB

urls.py

0.2 KB

views.py

1.1 KB

/.../step_03_process_form_data/news_site/news/migrations/

0001_initial.py

1.1 KB

__init__.py

0.0 KB

/.../step_03_process_form_data/news_site/news/templates/news/

articles.html

0.7 KB

articles_detail.html

1.7 KB

/.../step_03_process_form_data/news_site/news_site/

__init__.py

0.0 KB

asgi.py

0.4 KB

settings.py

3.3 KB

urls.py

0.8 KB

wsgi.py

0.4 KB

/.../step_03_process_form_data/news_site/news_site/templates/main/

base.html

1.1 KB

/.../step_04_admin_control_panel/news_site/

db.sqlite3

143.4 KB

manage.py

0.7 KB

/.../step_04_admin_control_panel/news_site/news/

__init__.py

0.0 KB

admin.py

0.3 KB

apps.py

0.1 KB

models.py

0.5 KB

tests.py

0.1 KB

urls.py

0.2 KB

views.py

1.1 KB

/.../step_04_admin_control_panel/news_site/news/migrations/

0001_initial.py

1.1 KB

__init__.py

0.0 KB

/.../step_04_admin_control_panel/news_site/news/templates/news/

articles.html

0.7 KB

articles_detail.html

1.7 KB

/.../step_04_admin_control_panel/news_site/news_site/

__init__.py

0.0 KB

asgi.py

0.4 KB

settings.py

3.3 KB

urls.py

0.8 KB

wsgi.py

0.4 KB

/.../step_04_admin_control_panel/news_site/news_site/templates/main/

base.html

1.1 KB

/.../43_Scientific_Computing_and_Data_Science/

example_01_derivative_and_primitive_function.py

0.6 KB

/.../44_Inside_Knowledge/

coffee.bmp

1.4 MB

example_01_struct.py

0.3 KB

example_02_cmd.py

0.9 KB

example_03_consuming_generators.py

0.7 KB

/

Corrected_Page_763.pdf

38.4 KB

Ernesti J., Kaiser P. - Python 3. The Comprehensive Guide to Hands-On Python Programming - 2022.pdf

17.9 MB

 

Total files 302


Copyright © 2025 FileMood.com