Added start to Caesar Cipher coding challenge
This commit is contained in:
13
Willow_Cypher_Coding_Challenge.py
Normal file
13
Willow_Cypher_Coding_Challenge.py
Normal file
@ -0,0 +1,13 @@
|
||||
import sys
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
||||
def main():
|
||||
if "-E" in sys.argv:
|
||||
encrypt()
|
||||
if "-D" in sys.argv:
|
||||
//Decrypt
|
||||
if "-h" in sys.argv:
|
||||
#Help
|
||||
|
||||
Reference in New Issue
Block a user