Products related to Python:
-
Programming Python
Once you've come to grips with the core Python language, learning how to build Python applications presents a far more interesting challenge.Tap this book's wealth of practical advice, snippets of code, and patterns of program design to take your Python skills to the next level.You'll start with in-depth discussions of core concepts and then progress toward complete programs in different application domains, including: * GUI programming * Internet scripting * Parallel processing * Database management * Networked applications * System administration * Text processing Most programming experts consider this classic book, now updated for Python 3.x, to be the industry standard for learning Python application programming.With clear and concise explanations of Python syntax and programming techniques, and numerous examples that illustrate both correct usage and common idioms, Programming Python shows you the right way to code with Python.
Price: 59.99 £ | Shipping*: 0.00 £ -
Programming with Python
Ideal for anyone who has never programmed, McMullen/Matthews/Parsons' PROGRAMMING WITH PYTHON uses a beginner's approach that combines conceptual content with rich examples and hands-on learning activities.Straightforward and student friendly, it emphasizes fundamental computer concepts from a Python programming perspective using a clear presentation with little technical jargon.Modules introduce important computer science concepts, procedural programming and object-oriented programming in short segments, while real-world examples, streamlined code and descriptive figures help you better understand today's computing concepts.As you strengthen your computer science knowledge, you will also sharpen critical-thinking and problem-solving skills -- and build confidence.
Price: 65.99 £ | Shipping*: 0.00 £ -
Pragmatic Python Programming : Learning Python the Smart Way
Explore the world of programming languages through Python and learn the building blocks of writing programs.This book covers Python 3.10, explaining it through six key concepts.Each chapter contains a real-world example with practical advice and a section on advanced concepts. You'll start by reviewing the concept of expressions and functions, which are two of the core building blocks of programming languages. You'll then move on to object-oriented concepts to help gain a practical understanding of Python, along with a chapter on control flow constructs.The book also takes a close look at sequences, explaining constructs and additional types, and wraps up with a chapter on modules, focusing on how to use and create packages. Whether you’re new to programming or already an experienced developer, upon finishing this book, you will have a solid understanding of Python's state-of-the-art development features. What You Will LearnStudy the six main concepts of the programming languagesLearn how to use programming language constructs through examplesReview the core Python language notations and concepts. Start using Python as a working languageWho This Book Is ForSoftware developers wanting to gain professional core Python knowledge quickly, and non-developers wanting to gain an understanding of programming concepts.
Price: 39.99 £ | Shipping*: 0.00 £ -
Bite-Size Python : An Introduction to Python Programming
Introduce children to the popular Python programming language through relatable examples and fun projects!Python has now surpassed Java as the most commonly used programming language.As the language rises in popularity, this complete guide can teach basic Python concepts to kids with its simple, friendly format.Bite-Size Python: An Introduction to Python Programming provides children with a foundation in the Python language.This unique book shares knowledge through easy-to-understand examples, fast exercises, and fun projects!As children learn, their parents, caregivers, and instructors can also join in their discoveries.Bite-Size Python is ideal for those who are new to programming, giving kids ages 9 and up a beginners’ approach to learning one of the most important programming languages. Gives an overview of PythonProvides exciting programming projectsOffers instruction on how to download and install PythonPresents key programming language conceptsSimplifies technical definitions With this playful guide to learning Python, readers can try out activities on their computers for a hands-on learning experience.The artwork in Bite-Size Python represents children of various backgrounds, so any child who picks up this book will be empowered to learn and young readers will love showing their projects to friends and family!
Price: 21.99 £ | Shipping*: 3.99 £
-
What is the programming language Python?
Python is a high-level, interpreted programming language known for its simplicity and readability. It is widely used for web development, data analysis, artificial intelligence, and scientific computing. Python's syntax allows for easy and quick development of applications, making it a popular choice for both beginners and experienced programmers. It also has a large standard library and a thriving community, which contributes to its popularity and versatility.
-
What is the problem with Python on an Ubuntu 18.04 Linux server?
The problem with Python on an Ubuntu 18.04 Linux server is that it comes with Python 3 installed by default, but some applications and scripts may still rely on Python 2. This can cause compatibility issues and errors when trying to run these applications or scripts. Additionally, Python 2 has reached its end of life and is no longer supported, which means it is not receiving updates or security patches, making it a potential security risk. It is recommended to migrate any remaining Python 2 code to Python 3 to ensure compatibility and security.
-
How can I run a Python script on a Linux web server?
To run a Python script on a Linux web server, you can follow these steps: 1. Connect to your web server using SSH or a terminal emulator. 2. Upload your Python script to the server using SCP or a file transfer protocol. 3. Make sure the Python interpreter is installed on the server. If not, you can install it using the package manager for your Linux distribution. 4. Set the executable permission for your Python script using the command `chmod +x script.py`. 5. Run the Python script using the command `./script.py` or `python script.py`. Make sure to check the server's configuration and permissions to ensure that your script can run properly.
-
How does loop programming work in Python?
In Python, loop programming allows you to repeat a block of code multiple times. There are two main types of loops in Python: the "for" loop and the "while" loop. The "for" loop iterates over a sequence of elements, such as a list or a range of numbers, and executes the block of code for each element. The "while" loop continues to execute the block of code as long as a specified condition is true. Both types of loops are useful for automating repetitive tasks and iterating over data.
Similar search terms for Python:
-
Bite-Size Python: An Introduction to Python Programming
Bite-Size Python: An Introduction to Python Programming
Price: 20.89 € | Shipping*: 0.00 € -
Python Network Programming Cookbook -
Discover practical solutions for a wide range of real-world network programming tasksAbout This Book• Solve real-world tasks in the area of network programming, system/networking administration, network monitoring, and more. • Familiarize yourself with the fundamentals and functionalities of SDN• Improve your skills to become the next-gen network engineer by learning the various facets of Python programmingWho This Book Is ForThis book is for network engineers, system/network administrators, network programmers, and even web application developers who want to solve everyday network-related problems.If you are a novice, you will develop an understanding of the concepts as you progress with this book. What You Will Learn• Develop TCP/IP networking client/server applications• Administer local machines' IPv4/IPv6 network interfaces• Write multi-purpose efficient web clients for HTTP and HTTPS protocols• Perform remote system administration tasks over Telnet and SSH connections• Interact with popular websites via web services such as XML-RPC, SOAP, and REST APIs• Monitor and analyze major common network security vulnerabilities• Develop Software-Defined Networks with Ryu, OpenDaylight, Floodlight, ONOS, and POX Controllers• Emulate simple and complex networks with Mininet and its extensions for network and systems emulations• Learn to configure and build network systems and Virtual Network Functions (VNF) in heterogeneous deployment environments• Explore various Python modules to program the InternetIn DetailPython Network Programming Cookbook - Second Edition highlights the major aspects of network programming in Python, starting from writing simple networking clients to developing and deploying complex Software-Defined Networking (SDN) and Network Functions Virtualization (NFV) systems.It creates the building blocks for many practical web and networking applications that rely on various networking protocols.It presents the power and beauty of Python to solve numerous real-world tasks in the area of network programming, network and system administration, network monitoring, and web-application development. In this edition, you will also be introduced to network modelling to build your own cloud network.You will learn about the concepts and fundamentals of SDN and then extend your network with Mininet.Next, you'll find recipes on Authentication, Authorization, and Accounting (AAA) and open and proprietary SDN approaches and frameworks.You will also learn to configure the Linux Foundation networking ecosystem and deploy and automate your networks with Python in the cloud and the Internet scale. By the end of this book, you will be able to analyze your network security vulnerabilities using advanced network packet capture and analysis techniques. Style and approachThis book follows a practical approach and covers major aspects of network programming in Python.It provides hands-on recipes combined with short and concise explanations on code snippets.This book will serve as a supplementary material to develop hands-on skills in any academic course on network programming.This book further elaborates network softwarization, including Software-Defined Networking (SDN), Network Functions Virtualization (NFV), and orchestration.We learn to configure and deploy enterprise network platforms, develop applications on top of them with Python.
Price: 39.99 £ | Shipping*: 0.00 £ -
Python Programming for Mathematics
Python Programming for Mathematics focuses on the practical use of the Python language in a range of different areas of mathematics.Through fifty-five exercises of increasing difficulty, the book provides an expansive overview of the power of using programming to solve complex mathematical problems. This book is intended for undergraduate and graduate students who already have learned the basics of Python programming and would like to learn how to apply that programming skill in mathematics. FeaturesInnovative style that teaches programming skills via mathematical exercises. Ideal as a main textbook for Python for Mathematics courses, or as a supplementary resource for Numerical Analysis and Scientific Computing courses.
Price: 44.99 £ | Shipping*: 0.00 £ -
Bioinformatics Programming Using Python
Through many examples and exercises, this book helps simplify bioinformatics programming using Python.It's an ideal guide for biologists who want to learn either basic scripting or substantial programming for various computational tasks, and for programmers who want to learn bioinformatics programming. "Bioinformatics Programming Using Python" can be used as a reference, for self-instruction, or as a companion book to help you through undergraduate courses in computer science, biology, and other life sciences.With the level of detail this book provides, it's also perfect for Professional Master's graduate courses in Bioinformatics.
Price: 47.99 £ | Shipping*: 0.00 £
-
How can I update Python on Linux?
To update Python on Linux, you can use the package manager specific to your Linux distribution. For example, on Ubuntu, you can use the following command: ```bash sudo apt-get update sudo apt-get install python3 ``` On CentOS, you can use: ```bash sudo yum update sudo yum install python3 ``` Alternatively, you can also use the Python package manager pip to update Python packages to the latest version.
-
How do you pronounce the programming language Python?
The programming language Python is pronounced as "pie-thuhn." The emphasis is on the first syllable, "pie," and the "th" sound is soft, like in the word "this." It is important to note that the correct pronunciation is not "py-thawn" or "py-thone."
-
Where is the error in the Python programming?
The error in the Python programming is on line 4. The error is a syntax error due to a missing colon at the end of the if statement. To correct the error, a colon should be added at the end of the if statement to indicate the start of the block of code that should be executed if the condition is true.
-
How can one perform socket programming in Python?
To perform socket programming in Python, one can use the built-in `socket` module. This module provides classes for creating sockets and establishing connections. One can create a socket object, set its properties (such as address family and socket type), bind it to a specific address and port, and then listen for incoming connections or connect to a remote server. By using methods like `send()` and `recv()`, one can send and receive data over the network using the created socket.
* All prices are inclusive of VAT and, if applicable, plus shipping costs. The offer information is based on the details provided by the respective shop and is updated through automated processes. Real-time updates do not occur, so deviations can occur in individual cases.