-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from ajitonelsonn/dev
Formatu String
- Loading branch information
Showing
3 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Formatu String | ||
|
||
Iha Python, ita bele utiliza fórmata string atu kria string ho variável sira nian. Fórmata string hanesan mekanizmu ida atu inklui variável sira iha string liu husi forma formatadu. Ita bele uza `str.format()` ka fórmata ho string (`f-string`). | ||
|
||
Ezemplu sira: | ||
|
||
1. **Fórmata String Utiliza `str.format()`**: | ||
|
||
```python | ||
nome = "Jedy" | ||
idade = 21 | ||
|
||
# Uza str.format() | ||
mensagem = "Hau nia naran mak {}, no hau nia idade mak {}.".format(nome, idade) | ||
print(mensagem) | ||
# | ||
``` | ||
|
||
2. **Fórmata String Utilizando F-String**: | ||
|
||
```python | ||
nome = "Jedy" | ||
idade = 21 | ||
|
||
# Uza F-String | ||
mensagem = f"Hau nia naran mak {nome}, no hau nia idade mak {idade}." | ||
print(mensagem) | ||
# | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
### Exerciciu I | ||
|
||
Exercísiu sira hodi pratika fórmata string iha Python: | ||
|
||
1. **Exercísiu 1**: Fórmata string ho variável sira ne'ebé inklui naran, idade, no profisaun. | ||
|
||
```python | ||
nome = "Maria" | ||
idade = 25 | ||
profisaun = "doktor" | ||
|
||
mensagem = "Nia naran mak {}, idade {}, no profisaun {}.".format(nome, idade, profisaun) | ||
print(mensagem) | ||
``` | ||
|
||
2. **Exercísiu 2**: Fórmata string ho f-string atu hatudu informasaun kona-ba temperatura no unidade medida. | ||
|
||
```python | ||
temperatura = 25.6 | ||
unidade = "Celsius" | ||
|
||
mensagem = f"Temperatura mak {temperatura} grau {unidade}." | ||
print(mensagem) | ||
``` | ||
|
||
3. **Exercísiu 3**: Fórmata string atu kalkula total balansu ho variável sira. | ||
|
||
```python | ||
saldo_anterior = 1000 | ||
kreditu = 500 | ||
debitu = 200 | ||
|
||
balansu_atual = saldo_anterior + kreditu - debitu | ||
mensagem = "Balansu anterior: ${}, Kreditu: ${}, Debitu: ${}, Balansu atual: ${}".format(saldo_anterior, kreditu, debitu, balansu_atual) | ||
print(mensagem) | ||
``` | ||
|
||
4. **Exercísiu 4**: Fórmata string ho informasaun kona-ba koordenada GPS. | ||
|
||
```python | ||
latitude = -8.5489 | ||
longitude = 125.5770 | ||
|
||
mensagem = f"Koordenada GPS: Latitude {latitude}, Longitude {longitude}." | ||
print(mensagem) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#1. **Fórmata String Utiliza `str.format()`**: | ||
nome = "Jedy" | ||
idade = 21 | ||
|
||
# Uza str.format() | ||
mensagem = "Hau nia naran mak {}, no hau nia idade mak {}.".format(nome, idade) | ||
print(mensagem) | ||
# | ||
|
||
|
||
#2. **Fórmata String Utilizando F-String**: | ||
|
||
nome = "Jedy" | ||
idade = 21 | ||
|
||
# Uza F-String | ||
mensagem = f"Hau nia naran mak {nome}, no hau nia idade mak {idade}." | ||
print(mensagem) | ||
# |