Skip to content

Simple python code for Text to Binary convert ๐Ÿ–‡๏ธ

License

Notifications You must be signed in to change notification settings

darkhunter141/Text-Binary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

4 Commits
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Text-Binary

Simple python code for Text to Binary convert ๐Ÿ–‡๏ธ

Code :


import binascii
import time

 
print("\n===========================================\n")

print("\nEnter any number to see its binary form.\n")

print("\n===========================================\n")
time.sleep(0.5)


print("\nEnter Your Text : ")
time.sleep(0.5)
angga = raw_input("====> ")
time.sleep(0.5)

print("\n Your Bin Code :")
print(' '.join(format(ord(x), 'b') for x in angga))
print("\n")
time.sleep(0.5)

time.sleep(1)
print("Thanks For Viewing My Code! ^^")
time.sleep(1)
print("bye")

About

Simple python code for Text to Binary convert ๐Ÿ–‡๏ธ

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages