LaoLanguage

This wiki is in the process of being archived due to lack of usage and the resources necessary to serve it — predominately to bots, crawlers, and LLM companies. Edits are discouraged.
Pages are preserved as they were at the time of archival. For current information, please visit python.org.
If a change to this archive is absolutely needed, requests can be made via the infrastructure@python.org mailing list.

Links to Python information in Lao

ISO 639-1 Code: lo

ພາສາລາວ

Phrases taken from laoconnection

Getting Lao words for identifiers (variables) and text:

   1 >>> 
   2 >>> 
   3 >>> 
   4 >>> 
   5 >>>
   6 >>> 
   7 >>> '\u0E8A\u0EB7\u0EC8\u0E82\u0EAD\u0EC9\u0EA2\u0EC1\u0EA1\u0EC8\u0E99'
   8 'ຊື່ຂອ້ຢແມ່ນ'
   9 >>> 
  10 >>> '\u0E82\u0EC9\u0EAD\u0EA2\u0EA1\u0EB2\u0E88\u0EB2\u0E81'
  11 'ຂ້ອຢມາຈາກ'
  12 >>> 
  13 >>> '\u0EA5\u0EB2\u0EA7'
  14 'ລາວ'
  15 >>> 
  16 >>> '\u0E84\u0EB2\u0E99\u0EB2\u0E94\u0EB2'
  17 'ຄານາດາ'
  18 >>> 
  19 >>> '\u0EAD\u0EB2\u0EC0\u0EA1\u0EA3\u0EB4\u0E81\u0EB2'
  20 'ອາເມຣິກາ'
  21 >>> 
  22 >>> '\u0E9D\u0EA3\u0EC9\u0EC8\u0E87'
  23 'ຝຣ້່ງ'

Using UTF-8 encoded identifiers:

   1 
   2 
   3 
   4 
   5 
   6 ຊ່ືອ = ['ດາວ', 'Bob', 'Mary', 'Monique']
   7 
   8 countries = ['ລາວ', 'ຄານາດາ', 'ອາເມຣິກາ', 'ຝຣ້່ງ']
   9 
  10 for ຊ່ືອx, countryx in zip(ຊ່ືອ, countries):
  11     print('\nຊື່ຂອ້ຢແມ່ນ ' + ຊ່ືອx)
  12     print('ຂ້ອຢມາຈາກ ' + countryx + '\n')

CategoryLanguage CategoryUnicode