Merge pull request #301 from b3g00d/add_my_name

Add: myname Quang
This commit is contained in:
Luke Oliff 2018-10-08 09:10:38 -07:00 committed by GitHub
commit 7b6bd96f1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View File

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

14
code/b3g00d.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)