All Projects → antonioam82 → Calcu

antonioam82 / Calcu

Licence: other
CALCULADORAS

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Calcu

TKinterDesigner
TKinterDesigner is a tool software to develop the Python User Interface for Python programmer.
Stars: ✭ 663 (+2913.64%)
Mutual labels:  tkinter, tkinter-graphic-interface, tkinter-python
Tkinter-Designer
An easy and fast way to create a Python GUI 🐍
Stars: ✭ 4,697 (+21250%)
Mutual labels:  tkinter, tkinter-graphic-interface, tkinter-python
password-keeper
A simple and secure Password Management System made completely in Python.
Stars: ✭ 26 (+18.18%)
Mutual labels:  tkinter, tkinter-graphic-interface, tkinter-python
python-gui-demos
This repo contains the basic demonstration of python gui
Stars: ✭ 31 (+40.91%)
Mutual labels:  tkinter, tkinter-graphic-interface, tkinter-python
tkmacosx
Tkmacosx is a Python library extension to the Tkinter module. Change background and foreground colors of a Button, Use ColorVar to change colors of multiple widgets just like StringVar, and much more.
Stars: ✭ 48 (+118.18%)
Mutual labels:  tkinter, tkinter-python
tk tools
Python tkinter tools, Python3.7+
Stars: ✭ 86 (+290.91%)
Mutual labels:  tkinter, tkinter-graphic-interface
PySimpleGUI
Launched in 2018. It's 2022 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive d…
Stars: ✭ 10,846 (+49200%)
Mutual labels:  tkinter, tkinter-python
Form-Labeller
Use this tool to label forms, bounding boxes, and assigning types to annotations
Stars: ✭ 17 (-22.73%)
Mutual labels:  tkinter, tkinter-python
Python-Media-Player
Simple Music Player Written in Python And Tkinter
Stars: ✭ 40 (+81.82%)
Mutual labels:  tkinter, tkinter-graphic-interface
vALGO
vALGO helps students to visualize various traversal and operations performed on data structure through amazing animations.
Stars: ✭ 28 (+27.27%)
Mutual labels:  tkinter, tkinter-python
ttkbootstrap
A supercharged theme extension for tkinter that enables on-demand modern flat style themes inspired by Bootstrap.
Stars: ✭ 512 (+2227.27%)
Mutual labels:  tkinter, tkinter-python
rpncalc
RPNCalc: The Command Line Reverse Polish Notation (RPN) Calculator
Stars: ✭ 19 (-13.64%)
Mutual labels:  calculator, calculator-application
DevHelpBox
we are creating this community so that other developers can get benefits of it.
Stars: ✭ 35 (+59.09%)
Mutual labels:  calculator, calculator-application
hookwin10calc
Reverse engineered Windows 10 Calculator.exe (UWP application) hacker. 한글/漢文을 배운 윈도우 계산기 패치.
Stars: ✭ 19 (-13.64%)
Mutual labels:  calculator, calculator-application
Pegparser
💡 Build your own programming language! A C++17 PEG parser generator supporting parser combination, memoization, left-recursion and context-dependent grammars.
Stars: ✭ 164 (+645.45%)
Mutual labels:  calculator
Toolchain
Toolchain and libraries for C/C++ programming on the TI-84+ CE calculator series
Stars: ✭ 229 (+940.91%)
Mutual labels:  calculator
Xk Time
xk-time 是时间转换,时间计算,时间格式化,时间解析,日历,时间cron表达式和时间NLP等的工具,使用Java8,线程安全,简单易用,多达70几种常用日期格式化模板,支持Java8时间类和Date,轻量级,无第三方依赖。
Stars: ✭ 162 (+636.36%)
Mutual labels:  calculator
Xopcodecalc
Opcode calculator
Stars: ✭ 147 (+568.18%)
Mutual labels:  calculator
MHWCalculator
Monster Hunter World: Iceborne - Calculator
Stars: ✭ 39 (+77.27%)
Mutual labels:  calculator
Pdd
📅 Tiny date, time diff calculator with piggybacked timers
Stars: ✭ 218 (+890.91%)
Mutual labels:  calculator

Calcu

#Calculadoras en Python

----------------------------------BASICS------------------------------------------------ Python = is a Dynamically Typed, Object Oriented Programming Language = It is Open Source, Free, Easy to code and learn


Tkinter = Inbuilt Python module --> to create simple GUI apps = Standard Python interface to Tk GUI toolkit.

    Tkinter is the standard GUI library for Python. 
    Python when combined with Tkinter provides a fast and easy way to create GUI applications.

Tk = is the toolkit

mainloop() = Most important function while working with Tkinter. = You must call mainloop only one time. = It is an infinite loop.

-----------------------------BASIC Code for Tkinter----------------------------------

from tkinter import * root = Tk() # 'root' is object of 'Tk' class # creates a basic gui # basic default compoments present in GUI # A base is created -> for GUI Development # we can create button, menu bar,etc on this base

root.mainloop() # event loop -> called only once


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].