-
Notifications
You must be signed in to change notification settings - Fork 0
/
kbpstombps.py
30 lines (28 loc) · 1.37 KB
/
kbpstombps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#! /usr/bin/python
import sys
try:
print '''
-----------------------------------------------------------
| ( kB/s to Mbps ) |____
| # # ##### |
| # # # # # # ## #### #### # # |
| # # # # # # # # # # # ## # |
| ####### ##### ## # # # # # # # # |
| # # # ## ###### # ### # # # # # |
| # # # # # # # # # # # # # ## |
| # # ##### # # # # #### #### # # |
| |
| Powered by Cyber Merah Putih |
| ( Denny Septian ) |
| |
----------------------------------------------------------------'''
# Awal
speed_download = int(raw_input("| Input your bandwith (example : 230 kBps) : "))
Mbps = int(speed_download) * int(8)
# print output
print("-----------------------------------------------------------------")
print("| Output : "+str(Mbps)+" kB")
print("-----------------------------------------------------------------")
except KeyboardInterrupt:
print("Exit now ...")
sys.exit()