Federal TVET Institute: Ethio-Italy Poly Technic Collage Satellite Campus
Federal TVET Institute: Ethio-Italy Poly Technic Collage Satellite Campus
Easily edit videos, audios, music, and images with simple drag and drop
Split/cut/trim/crop your video and media into parts with a single click
Change scense and merge video seamless with innovative and smooth
transition effect
Add text easily and choose from a variety of fonts and animations to
improve your videos
Powerful resource library offering a wide range of fun and entertaining
stickers, videos, images and sound
Sure! Here's a script in Python that takes two numbers from the user and displays their
sum:
```python
# Importing the necessary library for GUI
from tkinter import *
# Creating labels and entry fields for the user to enter numbers
label1 = Label(window, text="First number:")
label1.pack()
entry1 = Entry(window)
entry1.pack()
label2 = Label(window, text="Second number:")
label2.pack()
entry2 = Entry(window)
entry2.pack()
When you run this script, it will open a GUI window with two input fields for the user to
enter numbers. After entering the numbers, the user can click the "Submit" button. The
script will then calculate the sum of the two numbers and display it in the textbox
labeled "Sum".