Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .spellcheck_exceptions_dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ UTF

# authors
Rossum

praisetompane

# domain specific
radix
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![build status](https://github.com/praisetompane-programming-languages/python/actions/workflows/python.yaml/badge.svg) <br>

**objective**:
- An in-depth study of Python's implementation and ecosystem.
- An in-depth study of Python's design, implementation and ecosystem.
- This focuses on [CPython](https://github.com/python/cpython).


Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def checkout():
print("Average price per item: $", average)


def checkoutRecursive():
def check_out_recursive():
def checkout(total, count):
price = float(input("Enter price of item (0 when done): "))
if price < 0:
Expand All @@ -37,7 +37,7 @@ def checkout(total, count):

def main():
# checkout(): The iterative approach with mutation
(total, count) = checkoutRecursive()
(total, count) = check_out_recursive()
average = total / count
print("Total items:", count)
print("Total $", total)
Expand Down
7 changes: 7 additions & 0 deletions src/applications/collections/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""This makes the combine folder a package(module)"""

from combine.functions.number_funcs import *
from combine.functions.string_funcs import *

# generate unified interface for the combine package
__all__ = functions.number_funcs.__all__ + functions.string_funcs.__all__
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions src/applications/math/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""This makes the combine folder a package(module)"""

from combine.functions.number_funcs import *
from combine.functions.string_funcs import *

# generate unified interface for the combine package
__all__ = functions.number_funcs.__all__ + functions.string_funcs.__all__
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions src/graphics/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""This makes the combine folder a package(module)"""

from combine.functions.number_funcs import *
from combine.functions.string_funcs import *

# generate unified interface for the combine package
__all__ = functions.number_funcs.__all__ + functions.string_funcs.__all__
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions todo.txt

This file was deleted.