Skip to content

Commit

Permalink
Merge pull request #17 from ajitonelsonn/dev
Browse files Browse the repository at this point in the history
String width no Alignment
  • Loading branch information
ajitonelsonn authored Apr 4, 2024
2 parents 0cd257b + bb47b08 commit 411510a
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 0 deletions.
34 changes: 34 additions & 0 deletions String width no Alignment/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# String width no Alignment

Iha Python, ita bele kontrola width no alignment (alinhamentu) husi string bazeia ba karakter sira ne'ebé ita inklui iha string. Ne'e importante bainhira ita kria output sira ne'ebé formatadu iha maneira ne'ebé di'ak, hanesan tabela ka relatóriu.

Ita bele kontrola width no alignment liu husi fórmata string ho `str.format()` ka f-string. Ita uza notasaun especial ne'ebé inklui dala balun ho {} iha string formatadu atu indika width no alignment.

Exemplos:

1. **Alignment (Alinhamentu)**:

Ita bele kontrola alinhamentu husi string iha kada fórmata liu husi sinais `-` (left-align), `^` (center-align), ka `>` (right-align).

```python
nome = "Jedy"
idade = 21

# Alinhamentu left, center, no right
print("{:<10}".format(nome)) # Sai "Ana "
print("{:^10}".format(idade)) # Sai " 30 "
print("{:>10}".format(idade)) # Sai " 30"
```

2. **Width (Largura)**:

Ita bele kontrola width husi string ho indikasaun husi dala iha {}.

```python
nome = "Jedy"
idade = 21

# Largura 10
print("{:<10}".format(nome)) # Sai "Ana "
print("{:^10}".format(idade)) # Sai " 30 "
```
31 changes: 31 additions & 0 deletions String width no Alignment/exerciciu/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
### Exerciciu I

Exercísiu sira hodi pratika string width no alignment iha Python:

1. **Exercísiu 1**: Kria tabela ho alignment no width ne'ebé adekuadu ba informasaun ida.

```python
# Dados ba tabela
produtus = [
("Lapiseira", 2, 1.50),
("Kareta Rais", 1, 20.00),
("Kadernu", 3, 3.75)
]

# Hatudu tabela
print("PRODUTU KANTIDADE PREÇU UNITÁRIU")
for produto in produtus:
print("{:<15} {:^10} {:>15.2f}".format(*produto))
```

2. **Exercísiu 2**: Kria mensajen ho alignment ne'ebé klaru.

```python
# Dados ba mensajen
nome = "Ana"
idade = 30

# Hatudu mensajen ho alignment
mensagem = "O nome {} iha idade {}.".format(nome, idade)
print("{:^50}".format(mensagem))
```
6 changes: 6 additions & 0 deletions String width no Alignment/kode.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
nome = "Jedy"
idade = 21
# Alinhamentu left, center, no right
print("{:<10}".format(nome)) # Sai "Ana "
print("{:^10}".format(idade)) # Sai " 30 "
print("{:>10}".format(idade)) # Sai " 30"

0 comments on commit 411510a

Please sign in to comment.