30/09/2018, 20:59

The best calculator program written by Python language

github.com

AceLewis/my_first_calculator.py/blob/master/my_first_calculator.py

# my_first_calculator.py by AceLewis
# TODO: Make it work for all floating point numbers too

if 3/2 == 1:  # Because Python 2 does not know maths
    input = raw_input  # Python 2 compatibility

print('Welcome to this calculator!')
print('It can add, subtract, multiply and divide whole numbers from 0 to 50')
num1 = int(input('Please choose your first number: '))
sign = input('What do you want to do? +, -, /, or *: ')
num2 = int(input('Please choose your second number: '))

if num1 == 0 and sign == '+' and num2 == 0:
    print("0+0 = 0")
if num1 == 0 and sign == '+' and num2 == 1:
    print("0+1 = 1")
if num1 == 0 and sign == '+' and num2 == 2:
    print("0+2 = 2")
if num1 == 0 and sign == '+' and num2 == 3:
    print("0+3 = 3")
This file has been truncated. show original
Ngô Doãn Tuấn viết 23:00 ngày 30/09/2018

Thật phi thường với 20.800 dòng code
Em tự hỏi coder này từ ngân hà nào tới

Chế Tiệp Chân Khoa viết 23:07 ngày 30/09/2018

này là autogenerate mà, code cỡ 10 dòng rồi chạy vài giây là generate ra được chừng ấy

Ngô Doãn Tuấn viết 23:00 ngày 30/09/2018

Cần tìm một người code được hỗ đó

Hiệu viết 23:01 ngày 30/09/2018

Code quá khủng
Ko biết làm kiểu gì nữa =))

Trần Ngọc Khoa viết 23:01 ngày 30/09/2018

Voãi
Nhìn code mình đoán ông này đang troll

Bài liên quan
0