Ekashre jaiswal
@Ekashrejaiswal
Hi guys @Ekashrejaiswal there!
I with my few friends are working on the following targets --
On a bot to replace MEE6
on a music bot for discord
and A
Hello All. I am Ekansh Jaiswal also with my brother Shreyansh Jaiswal . I am a beginner in python Programming. I want someone who is a beginner or ave
Guys hi! Can anyone plz tell me or let me know that how to add a GIF in my profile picture bc i want to edit my profile photo like pro does plz help m
Ekashrejaiswal @NoNameByProgram @ThisUserTaken I mean i wanted a moving photo dude like many have like ... many do :)2 years ago
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
xxpertHacker I had set up the Nuitka compiler on Repl months ago:
.
Just write your code in main.py and treat it like normal, forget about the bash script that compiles it.2 years ago
Coder100 you literally don't, python is an interpreted language, that means it executes the code instead of compiling to a binary.2 years ago
RYANTADIPARTHI It 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/2 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
RYANTADIPARTHI I guess you could use turtle, pygame, tkinter, flask, and django. When using flask or django, you can use HTML, js, and css.2 years ago
SamuelCheng I 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.2 years ago
Hi guys!!,
I am new to this amazing world and I have made a new GUI based calculator. If you guys have any more good ideas then definetly comment me I
Python
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
elipie it 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, column2 years ago
RYANTADIPARTHI You won't have an option to put it in a new window. Only a few repls have this, so you can't do it.2 years ago
Guys how to make a new window open on Python using tkinter package??
RYANTADIPARTHI If you mean a new window to look at your execution, i don't think you can do that. It's limited.2 years ago
EpicRaisin If 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 o2 years ago
How can we make a program restart base on the user inputs can anybody tell me how to do it on PYTHON
Coder100 import 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"
`2 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
Ekashrejaiswal Hey 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-TeamPyFuture2 years ago