‌‌BGOPC
‌‌BGOPC
خواندن ۱ دقیقه·۳ سال پیش

ساخت ماشین حساب با پایتون

سلام به همه!

من داشتم تو سایت میگشتم که یک برنامه باحال به چشمم خورد.

ماشین حساب با پایتون ولی متاسفانه وقتی اجراش میکردم کار نکرد.

پس خودم یکی نوشتم

این ماشین حساب گرافیکی نیست

اگه خواستید قابلیت خاصی بهش اضافه کنید به من بگید که یک پست جدید بنویسم تا بهتون کمک کنم.

inp1 = float(input(&quotfirst number&quot))
oper = input(&quotthis must be an operator; you can onle return me: * / - + &quot)
inp2 = float(input(&quotsecond number&quot))
while oper != &quot*&quot or oper != &quot-&quot or oper != &quot/&quot or oper != &quot+&quot:
print(&quotwrong operator&quot)
oper = input(&quotthis must be an operator; you can onle return me: * / - + &quot)
&quot&quot&quot
this if-loop(while) check operator is true or false
&quot&quot&quot
if oper == &quot*&quot:
print (inp1 * inp2)
if oper == &quot/&quot:
print (inp1 / inp2)
if oper == &quot-&quot:
print (inp1 - inp2)
if oper == &quot+&quot:
print (inp1 + inp2)
else:
print(&quotI dont no why but the operator is wrong&quot)


با تشکر

لطفا درخواستهاتونو بگید و اگه بلد بودم انجام میدم.

برنامه نویسیپایتونماشین حساب
شاید از این پست‌ها خوشتان بیاید