diff --git a/ceaser/.idea/Ceasar.iml b/ceaser/.idea/Ceasar.iml new file mode 100644 index 0000000..6711606 --- /dev/null +++ b/ceaser/.idea/Ceasar.iml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/ceaser/.idea/ceasar.py b/ceaser/.idea/ceasar.py new file mode 100644 index 0000000..f070609 --- /dev/null +++ b/ceaser/.idea/ceasar.py @@ -0,0 +1,13 @@ +def show_result(plaintext, n): + + """Generate a resulting cipher with elements shown""" + encrypted = encrypt(n, plaintext) + + + + print 'Plaintext: %s' % plaintext + print 'Encrytped: %s' % encrypted + + +show_result("abc", 1) + diff --git a/ceaser/.idea/misc.xml b/ceaser/.idea/misc.xml new file mode 100644 index 0000000..cd9d35b --- /dev/null +++ b/ceaser/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ceaser/.idea/modules.xml b/ceaser/.idea/modules.xml new file mode 100644 index 0000000..ad01c04 --- /dev/null +++ b/ceaser/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/ceaser/.idea/workspace.xml b/ceaser/.idea/workspace.xml new file mode 100644 index 0000000..13af2b0 --- /dev/null +++ b/ceaser/.idea/workspace.xml @@ -0,0 +1,304 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1470397339023 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/class_reverse/reverse.py b/class_reverse/reverse.py index 75a2dbe..cbf2522 100644 --- a/class_reverse/reverse.py +++ b/class_reverse/reverse.py @@ -10,3 +10,9 @@ # Solution: class InputOutString(object): # code goes here + def __init__(self): + self.s = "" + + def getString(self): + self.s = raw_input("Write Down Any Word : ") +