CrackingCodes.Ch09 package

Submodules

CrackingCodes.Ch09.PracticeQuestions module

Chapter 9 Practice Questions

Answers Chapter 9 Practice Questions via Python code.

CrackingCodes.Ch09.PracticeQuestions.main()[source]

CrackingCodes.Ch09.passingReference module

Passing references in a function

Demonstrates how to pass a reference to a function.

CrackingCodes.Ch09.passingReference.eggs(someParameter: list) → None[source]

Append to a parameter.

Appends ‘Hello’ to a given parameter.

Parameters:someParameter – List of elements.
Returns:None. Only appends a string to a provided parameter.
CrackingCodes.Ch09.passingReference.main()[source]

CrackingCodes.Ch09.transpositionTest module

Transposition Cipher Test

Demonstrates a unit test for the transposition encrypt and decrypt functions.

CrackingCodes.Ch09.transpositionTest.main()[source]

Module contents