Files
python/exercises/practice/simple-cipher/simple_cipher.py

10 lines
145 B
Python
Raw Permalink Normal View History

class Cipher:
def __init__(self, key=None):
pass
def encode(self, text):
pass
def decode(self, text):
pass