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

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)