Skip to content

Commit 017333a

Browse files
authored
Merge pull request #4 from Sleepy4k/3-add-code-documentation
3 add code documentation
2 parents 5104d89 + 5cd73cc commit 017333a

File tree

3 files changed

+43
-1
lines changed

3 files changed

+43
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
*
22
!main.py
3+
!README.md
34
!.gitignore
45
!.editorconfig
56
!.gitattributes

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Diconvert
2+
3+
## ID
4+
5+
### Pengertian
6+
7+
Yaitu sebuah system menggunakan bahasa pemrograman python yang mana memiliki fungsi untuk mengubah suatu bilangan dengan tipe data tertentu ke tipe data lain nya
8+
9+
### Kebutuhan System
10+
11+
- Python >= 3.1
12+
13+
### Instalasi
14+
15+
Pastikan kalian sudah menginstall python dengan versi >= 3.1
16+
17+
python --version
18+
19+
Jalankan file main.py
20+
21+
python main.py
22+
23+
## EN
24+
25+
### Understanding
26+
27+
That is a system using the Python programming language which has a function to change a number with a certain data type to another data type
28+
29+
### Dependencies
30+
31+
- Python >= 3.1
32+
33+
### Instalation
34+
35+
Make sure you have installed Python with version >= 3.1
36+
37+
python --version
38+
39+
Run the main.py file
40+
41+
python main.py

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def hexadecimal():
128128
# Logic
129129
def logic():
130130
select = input('Select your output : ')
131-
print('-----------------------------')
131+
seperator()
132132
functions = {
133133
'1': decimal,
134134
'2': binary,

0 commit comments

Comments
 (0)