A fun repo for encrypting and decrypting the Python Strings.
I made this Python Program because I didn't had anything to do so I started making it. And also just for fun:)
It takes input as a String like 'BABA' or 'badkf' and it gives output as '(16)(06)(16)(06)'.
It takes input as a String like '(16)(06)(16)(06)' and it gives output as 'BABA' or 'badkf'.
It takes String as input.
It converts each character of String into its equivalent ASCII code.
It then converts each ASCII code into their binary form of 8 bits.
It then counts number of ones in each binary number.
It then wraps number of ones for each character in parenthesis.
The Encrypting is done.