+ 1
How do I build a calculator that has square root, sin, cos and tan buttons, using Tkinter?
A simple calculator would have the numeric buttons and a few operators, I want to add buttons that would help the user find the square root, sine, cosine and tangent of the given number
3 ответов
+ 2
For this you require 3 things
- Knowledge of Python [https://www.sololearn.com/learn/Python/2269/]
- Problem Solving skills [solve code coaches]
- Knowledge of Tkinter [any sites]
+ 1
Thank you so much, I have the three, just how to use the math module.
0
Ogunleke Samuel Ayomide simply write
import math
print(help('math'))