Rename hello_world.py to b3g00d.py

This commit is contained in:
Luke Oliff
2018-10-08 17:10:23 +01:00
committed by GitHub
parent 5672b6226d
commit e867c2c1d4

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)