fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@@ -0,0 +1,35 @@
---
title: Python Ord Function
localeTitle: Função Python Ord
---
## Função ord
`ord()` é uma função embutida no Python 3, para converter a string representando um caractere Unicode em inteiro representando o código Unicode do caractere.
#### Exemplos:
```
>>> ord('d')
100
>>> ord('1')
49
```
## função chr
`chr()` é uma função embutida no Python 3, para converter o inteiro representando o código Unicode em uma string representando um caractere correspondente.
#### Exemplos:
```
>>> chr(49)
'1'
```
Uma coisa é notar que, se o valor inteiro passado para `chr()` estiver fora do intervalo, um ValueError será gerado.
```
>>> chr(-10)
'Traceback (most recent call last):
File "<pyshell#24>", line 1, in <module>
chr(-1)
ValueError: chr() arg not in range(0x110000)'
```