From 385b4ba222e9dc9c4dedc848f061a5cc6078b85b Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Thu, 16 Jan 2025 07:41:39 -0500 Subject: [PATCH] Remove unnecessary file --- ccipher.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 ccipher.py diff --git a/ccipher.py b/ccipher.py deleted file mode 100644 index 4434c1c..0000000 --- a/ccipher.py +++ /dev/null @@ -1,19 +0,0 @@ -test_str = "abc" - -bytes_lst = [] -for item in test_str: - bytes_lst.append(bytes(item,'utf-8')) -print("As bytes, the string is:") -print(bytes_lst) - -encoded_lst = [] -for item in test_str: - encoded_lst.append(item.encode()) -print("Encoding the characters in the string also gives:") -print(encoded_lst) - -hex_lst=[] -for item in encoded_lst: - hex_lst.append(list(item)[0]) -print("The hex values associated with those bytes is:") -print(hex_lst) \ No newline at end of file