Guys i have made this following repl but unable to make it into EXE for user to use plz tell me how to do this??
Python
Coder100you literally don't, python is an interpreted language, that means it executes the code instead of compiling to a binary.3 years ago
RYANTADIPARTHIIt looks like pyinstaller is a good one to turn your files to .exe, but you say you got a virus. How about this link:
https://www.geeksforgeeks.org/convert-python-script-to-exe-file/3 years ago
Guys help me make this combo calculator into GUI for making it easy to work for user actually i am new so idk GUI much of python and this is my first
Python
RYANTADIPARTHII guess you could use turtle, pygame, tkinter, flask, and django. When using flask or django, you can use HTML, js, and css.3 years ago
SamuelChengI don't think we'll help you to MAKE the GUI but I can advice you on HOW to make the GUI. If you want a static website, look at flask, and if you want a normal desktop GUI application, look at tkinter or Pygame.3 years ago
Hi guys i am working to make a LogonUI for user using GUI but i am failing to add the program plz help me add this in the new window.
Python
elipieit seems as though you are outputting to the terminal and you want it to output on the log on try this:
#calculator
from tkinter import *
from tkinter.messagebox import *
def show_answer():
Ans = int(num1.get()) + int(num2.get())
blank.insert(0, Ans)
main = Tk()
Label(main, text = "Enter Num 1:").grid(row=0)
Label(main, text = "Enter Num 2:").grid(row=1)
Label(main, text = "The Sum is:").grid(row=2)
num1 = Entry(main)
num2 = Entry(main)
blank = Entry(main)
num1.grid(row=0, column3 years ago
RYANTADIPARTHIYou won't have an option to put it in a new window. Only a few repls have this, so you can't do it.3 years ago
Guys how to make a new window open on Python using tkinter package??
RYANTADIPARTHIIf you mean a new window to look at your execution, i don't think you can do that. It's limited.3 years ago
EpicRaisinIf you mean open a new window along with the main window, then you need to use a top level.
Use this:
toplevel = tk.Toplevel(window) #'toplevel' can be changed to anything, it is just a variable to hold the top level, 'window' should be whatever variable holds your main window
toplevel.title = 'Top Level'
Full code example:
import tkinter as tk
window = tk.Tk()
window.title = 'Main Window'
toplevel = tk.Toplevel(window)
toplevel.title = 'Top Level'
window.mainloop()
From there, you can do most o3 years ago
How can we make a program restart base on the user inputs can anybody tell me how to do it on PYTHON
Coder100import sys
sys.exit(1)
And to have it restart, you also need to create a .replit file:
run="while [ true ]; do; python main.py: done"
`3 years ago
Hey Guys!!
I Have recently joined this amazing and beautiful Replit Platform and I had made my new cute looking and sharp timing Clock Of Luck. If u w
Python
EkashrejaiswalHey guys whoever wants to create something then just join my team to get amazing ideas to inovate and ENJOY!!!
TEAM NAME -- TeamPyFuture
LINK -- https://repl.it/teams/join/malxzcpmxnuetsxwogoangldplfivvhw-TeamPyFuture3 years ago