About 637,000 results
Open links in new tab
  1. Visualize the structure of a Python module - Stack Overflow

    Jan 20, 2017 · If someone is searching a tool for visualising the structure of a Python module, you can try Sourcetrail. This tool helps you to visualise big source codes such as PyTorch or TensorFlow. It starts with a nice overview of the project.

  2. python - Visualizing your code's architecture - Stack Overflow

    Apr 4, 2018 · view structure and hierarchy of the source code. view UML diagram of your classes. There is also the pycallgraph2 Python module that can create call graph visualizations for Python applications. (This is a maintained fork of the discontinued pycallgraph Python module) And there is Codimension IDE that has Python code visualization feature

  3. Build a Call graph in python including modules and functions?

    So, I need to know if there is a tool (which do not require any python file execution) that can build a call graph using the modules instead of the trace or python parser. I have such tools for C but not for python. Thank you.

  4. Functions, Modules and OOP | jackfrued/Python-100-Days

    Apr 17, 2025 · In Python, functions are defined using the def keyword, followed by the function name, parameters in parentheses, and a colon. The function body is indented. Basic function structure: def function_name(parameters): """Docstring explaining what the function does""" # Function body return result # Optional return statement ... Module Diagram ...

  5. Structure diagrams | Python with Pets

    A structure diagram shows the chunks and the variables linking them together. Look under the surface to find a program's structure. You can use that structure for hundreds of tasks.

  6. 9.6: Hierarchy or Structure Chart - Engineering LibreTexts

    May 21, 2024 · Hierarchy or Structure chart for a program that has five functions. Convey the relationship or big picture of the various functions in a program.

  7. Python Syntax and Control Structures | jackfrued/Python-100 …

    Apr 17, 2025 · This document covers the fundamental syntax and control structures of Python that form the foundation of the Python-100-Days curriculum. It details Python's core syntax rules, variable assignment, ope ... Diagram: Python Control Flow Structures. Conditional Statements. ... such as data structures, functions, and object-oriented programming.

  8. Data Structures in Python | jackfrued/Python-100-Days | DeepWiki

    Apr 17, 2025 · Introduction to Python Data Structures. Python offers several built-in data structures that make data manipulation straightforward and efficient. Understanding these structures is essential for writing effective Python code. Sources: This diagram represents standard Python language features rather than specific files in the repository. Sequence ...

  9. Structuring Your Project — The Hitchhiker's Guide to Python

    In this section, we take a closer look at Python’s modules and import systems as they are the central elements to enforcing structure in your project. We then discuss various perspectives on how to build code which can be extended and tested reliably. Just as Code Style, API Design, and Automation are essential for a healthy development cycle.

  10. Writing Python Functions Part 1: Structure - The Hello World …

    Function Structure. Let’s take a look at the structure of a function by breaking down snowclone(). Functions are composed of a header and a body.

  11. Some results have been removed
Refresh