About 649 results
Open links in new tab
  1. Google's Python Class | Python Education | Google for Developers

    Jul 23, 2024 · Welcome to Google's Python Class -- this is a free class for people with a little bit of programming experience who want to learn Python. The class includes written materials, lecture videos, and lots of code exercises to practice Python coding.

  2. Python Introduction | Python Education | Google for Developers

    Jul 23, 2024 · Python is a dynamic, interpreted (bytecode-compiled) language. There are no type declarations of variables, parameters, functions, or methods in source code. This makes the code short and flexible, and you lose the compile-time type checking of the source code.

  3. Python Set Up | Python Education | Google for Developers

    Jul 23, 2024 · You can do this before starting the class, or you can leave it until you've gotten far enough in the class that you want to write some code. The Google Python Class uses a simple, standard Python installation, although more complex strategies are possible. Python is free and open source, available for all operating systems from python.org. In ...

  4. Python quickstart | Google Docs | Google for Developers

    Mar 21, 2025 · Create a Python command-line application that makes requests to the Google Docs API. Objectives. Set up your environment. Install the client library. Set up the sample. Run the sample. Prerequisites. To run this quickstart, you need the following prerequisites: Python 3.10.7 or greater; The pip package management tool; A Google Cloud project. A ...

  5. Getting Started with the Google Data Python Library

    Nov 3, 2023 · Once you've installed the Google Data library, you're ready to take the library for a test drive. Running Tests and Samples. The Google Data Python client library distributions include some test cases which are used in the development of the library.

  6. Python Strings | Python Education | Google for Developers

    Jul 23, 2024 · Python has a built-in string class named "str" with many handy features (there is an older module named "string" which you should not use). String literals can be enclosed by either double or single quotes, although single quotes are more commonly used.

  7. Using the Natural Language API with Python | Google Codelabs

    Text analyzed: Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace.

  8. Python quickstart | Google Drive | Google for Developers

    Mar 26, 2025 · Quickstarts explain how to set up and run an app that calls a Google Workspace API. Google Workspace quickstarts use the API client libraries to handle some details of the authentication and authorization flow.

  9. Basic Python Exercises | Python Education | Google for Developers

    Jul 23, 2024 · There are 3 exercises that go with the first sections of Google's Python class. They are located in the "basic" directory within the google-python-exercises directory. Download the google-python-exercises.zip if you have not already (see the Set-Up page for details).

  10. Python Dict and File | Python Education | Google for Developers

    Jul 23, 2024 · Python's efficient key/value hash table structure is called a "dict". The contents of a dict can be written as a series of key:value pairs within braces { }, e.g. dict = {key1:value1, key2:value2, ...