1-3 Interactive Python
1-3 Interactive Python
Prompt)
4) Run python:
$ python
Latihan 1:
Coba buat kode python yang menampilkan:
Programming***Essentials***in…Python
Solusi:
>>> print(“Programming”, “Essentials”, “in”, sep=“***”,
end=“…”); print(“Python”)
Latihan 2:
Buatlah panah mengarah ke atas menggunakan tanda asterik *
7) Use python as a calculator:
- Addition:
>>> 1 + 3 (integer numbers)
>>> 2.4 + 3.8 (floating-point numbers)
- Subtraction:
>>> 4 - 1
>>> 2.5 - 10
- Multiplication:
>>> 3 * 4
>>> 2. * 5
>>> 0.29 * 100
End