Create Python Registration Form in Jupyter notebook IDE | Python Library

preview_player
Показать описание
In this Video you will learn how to create basic GUI registration form in python using Tkinter library on jupyter notebook.
Tkinter Library is easy and fast to implement as compared to any other GUI toolkit.
its is more flexible and stable . It is included in Python, so nothing extra need to download.
Tkinter provides a simple syntax.

Jupyter notebook is an excellent tool here, because you can easily create clean and beautiful reports to communicate your findings.

we're all about learning and growing together. If you want to stay updated with the latest and most helpful content, make sure to hit that subscribe button and turn on the notification bell. By subscribing, you'll never miss out on the valuable knowledge we'll be sharing regularly.
And keep Learning!

📢 Let's Connect 📢
Follow us on social media to stay connected and receive updates about upcoming videos and exciting announcements!

🐦 Twitter:

Music: Sunny
Musician: @iksonmusic

Thank you for being a part of this amazing learning journey! Together, we can acquire new skills, gain knowledge, and make a positive impact on our lives and the world around us.

See you in the next video! 🎬
Рекомендации по теме
Комментарии
Автор

TclError Traceback (most recent call last)
Cell In[10], line 5
3 panel = Tk()
4 panel.title("Registration form")
----> 5 panel.geometry ("800*570")
6 panel.resizable(false, true)

File ~\anaconda3\Lib\tkinter\__init__.py:2100, in Wm.wm_geometry(self, newGeometry)
2097 def wm_geometry(self, newGeometry=None):
2098 """Set geometry to NEWGEOMETRY of the form =widthxheight+x+y. Return
2099 current value if None is given."""
-> 2100 return self.tk.call('wm', 'geometry', self._w, newGeometry)

TclError: bad geometry specifier "800*570"

AshwinMohanty-pd