Copyright (c) Hyperion Entertainment and contributors.

Difference between revisions of "AmigaOS Manual: Python"

From AmigaOS Documentation Wiki
Jump to navigation Jump to search
(Deleted "Data types")
(Added WIP note)
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
  +
{{WIP}}
 
= Welcome =
 
= Welcome =
  +
  +
Python is a high-level, object-oriented general purpose programming language created by Guido van Rossum. It includes a large standard library containing standardized solutions for the common programming problems and tools for accessing the system resources. On Amiga, Python can replace [[AmigaOS Manual: ARexx|ARexx]] as a scripting language.
   
 
This manual introduces you to Python, tells you how to create Python programs and provides a reference section of Python commands.
 
This manual introduces you to Python, tells you how to create Python programs and provides a reference section of Python commands.
Line 17: Line 20:
 
[[AmigaOS Manual: Python Debugging|Chapter 7. Debugging]]
 
[[AmigaOS Manual: Python Debugging|Chapter 7. Debugging]]
   
[[AmigaOS Manual: Python Parsing|Chapter 8. Parsing]]
+
[[AmigaOS Manual: Python Parsing|Chapter 8. Parsing]] This chapter explains how to break up strings and files into more easily processed components.
   
[[AmigaOS Manual: Python Graphical User Interfaces|Chapter 9. Graphical User Interfaces]]
+
[[AmigaOS Manual: Python Graphical User Interfaces|Chapter 9. Graphical User Interfaces]] This chapter explains how to create graphical user interfaces with Python.
   
 
[[AmigaOS Manual: Standard Exceptions|Appendix: A. Standard Exceptions]] This appendix lists the standard Python exceptions.
 
[[AmigaOS Manual: Standard Exceptions|Appendix: A. Standard Exceptions]] This appendix lists the standard Python exceptions.
  +
  +
[[AmigaOS Manual: Built-in Constants|Appendix: B. Built-in Constants]] This appendix lists the Python's built-in constants.
   
 
[[AmigaOS Manual: Python Glossary|Glossary]] The glossary contains common Python terms.
 
[[AmigaOS Manual: Python Glossary|Glossary]] The glossary contains common Python terms.
Line 33: Line 38:
   
 
Further information on learning and using Python can be found in:
 
Further information on learning and using Python can be found in:
  +
...
 
  +
[https://docs.python.org/2.7/ Python 2.7.15 Documentation], by Python Software Foundation.

Revision as of 07:53, 24 July 2018

WIP.png This page is currently being updated to AmigaOS 4.x. Some of the information contained here may not yet be applicable in part or totally.

Welcome

Python is a high-level, object-oriented general purpose programming language created by Guido van Rossum. It includes a large standard library containing standardized solutions for the common programming problems and tools for accessing the system resources. On Amiga, Python can replace ARexx as a scripting language.

This manual introduces you to Python, tells you how to create Python programs and provides a reference section of Python commands.

Chapter 1. Introducing Python This chapter gives an overview of Python, how it works on the Amiga, and the basic features of the programming language.

Chapter 2. Getting Started

Chapter 3. Elements of Python

Chapter 4. Functions This chapter describes the use of functions and provides an alphabetical listing of the built-in Python functions.

Chapter 5. Modules and Packages

Chapter 6. Classes and Objects This chapter explains how to use Python's object-oriented features.

Chapter 7. Debugging

Chapter 8. Parsing This chapter explains how to break up strings and files into more easily processed components.

Chapter 9. Graphical User Interfaces This chapter explains how to create graphical user interfaces with Python.

Appendix: A. Standard Exceptions This appendix lists the standard Python exceptions.

Appendix: B. Built-in Constants This appendix lists the Python's built-in constants.

Glossary The glossary contains common Python terms.

Document Conventions

The following conventions are used in this manual: ...

Sources of Additional Information

Further information on learning and using Python can be found in:

Python 2.7.15 Documentation, by Python Software Foundation.