mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2025-07-30 13:30:16 +00:00
Add: myname Quang
This commit is contained in:
14
code/hello_world.py
Normal file
14
code/hello_world.py
Normal 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)
|
Reference in New Issue
Block a user