Python Glossary

By |April 25, 2018|Computer Programming Languages, Python|

Python Glossary A programming glossary for Python for the beginner. If you want a more in-depth glossary, visit the Official Python Documentation. Class Python is a Language that supports the Object Oriented Programming paradigm. Like other OOP languages, Python has classes which are defined wireframes of objects. Python supports class inheritance. A class [...]

Comments Off on Python Glossary

Alice Teaches OOP (Glossary of useful terms)

By |April 21, 2018|Alice, Computer Programming Languages|

Alice Teaches OOP: Expanded Glossary of Key Terms When learning Object-Oriented Programming (OOP) with Alice, understanding the terminology is essential. Here is an expanded glossary to help clarify the concepts used within the Alice programming environment, supported by references to online resources. World In Alice, a "world" is a container for all objects, [...]

Comments Off on Alice Teaches OOP (Glossary of useful terms)

Learn about Python Sets (lists)

By |April 15, 2018|Computer Programming Languages, Python|

Learning About Python Sets Introduction to Sets Sets are a type of list in Python, but with a twist: they do not allow duplicate entries. This makes sets perfect for collecting unique items. Let's start with an example. Example: Removing Duplicates Imagine you want to collect a list of words used in a [...]

Comments Off on Learn about Python Sets (lists)

Learn Python Lists

By |April 7, 2018|Computer Programming Languages, Python|

Lesson on Lists in Python Lists in Python are a versatile and powerful tool for storing collections of items. They are similar to arrays in other programming languages but are more flexible as they can contain items of different types. You can add, remove, and iterate over elements in a list with ease. [...]

Comments Off on Learn Python Lists
Go to Top