From 5672b6226d06a5d7bdba6514b7d282af88348a3e Mon Sep 17 00:00:00 2001 From: quangvn Date: Mon, 8 Oct 2018 10:32:03 +0000 Subject: [PATCH 1/2] Add: myname Quang --- README.md | 6 ++++++ code/hello_world.py | 14 ++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 code/hello_world.py diff --git a/README.md b/README.md index 06ba005..a417bbb 100644 --- a/README.md +++ b/README.md @@ -712,6 +712,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 ### rahman95 diff --git a/code/hello_world.py b/code/hello_world.py new file mode 100644 index 0000000..3ae150e --- /dev/null +++ b/code/hello_world.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) From e867c2c1d40d33fd19212dc4e7c5464f80494adc Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Mon, 8 Oct 2018 17:10:23 +0100 Subject: [PATCH 2/2] Rename hello_world.py to b3g00d.py --- code/{hello_world.py => b3g00d.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/{hello_world.py => b3g00d.py} (100%) diff --git a/code/hello_world.py b/code/b3g00d.py similarity index 100% rename from code/hello_world.py rename to code/b3g00d.py