diff --git a/README.md b/README.md index 5be890b..930f385 100644 --- a/README.md +++ b/README.md @@ -792,6 +792,12 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU # Q +### Quang Vũ Nhật +- I'm an Information Security Engineer. +- I'm a back end programmer. +- My current programming language is Python. +- [![github-alt][github-img]](https://github.com/b3g00d) + # R ### Raahel Baig diff --git a/code/b3g00d.py b/code/b3g00d.py new file mode 100644 index 0000000..3ae150e --- /dev/null +++ b/code/b3g00d.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- + +vn_greeting = u"Xin chào!" +en_greeting = "Hello!" + +if __name__ == "__main__": + try: + print((">>> print(meaning(\"{}\") == meaning(\"{}\"))").format( + vn_greeting, en_greeting)) + except Exception: + print((">>> print(meaning(\"{}\") == meaning(\"{}\"))").format( + vn_greeting.encode("utf-8"), en_greeting)) + + print(True)