Add: myname Quang

This commit is contained in:
quangvn 2018-10-08 10:32:03 +00:00
parent 4da95e9a22
commit 5672b6226d
2 changed files with 20 additions and 0 deletions

View File

@ -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

14
code/hello_world.py Normal file
View File

@ -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)