https://www.linkedin.com/posts/wideservetechnology_pythonproject-librarymanagementsystem-studentinnovation-activity-7350879337551699969-VldN?utm_source=share&utm_medium=member_android&rcm=ACoAAEpOlh0BLiR-iJvtWfZcSCxq_jwes4H4_s8
This is a small project of mine. Although I am at the beginners level, I have tried to create a practical Library Management System. I have created a desktop application with a database using Python, Tkinter and PostgreSQL. There is still a lot to learn, but I want to learn step by step.
WideServe Technology - Follow our LinkedIn page to get updates on more new projects.
This is a small project of mine. Although I am at the beginners level, I have tried to create a practical Library Management System. I have created a desktop application with a database using Python, Tkinter and PostgreSQL. There is still a lot to learn, but I want to learn step by step.
WideServe Technology - Follow our LinkedIn page to get updates on more new projects.
Linkedin
π Weβve built a full-featured Library Management System using Python! | WideServe Technology
π Weβve built a full-featured Library Management System using Python!
After weeks of learning, trying, breaking, and rebuilding β we finally created a smart, smooth, and database-powered system to digitize library operations.
π Why did we build this?
β¦
After weeks of learning, trying, breaking, and rebuilding β we finally created a smart, smooth, and database-powered system to digitize library operations.
π Why did we build this?
β¦
β€2π1π±1
π’ Big Announcement for Everyone!
Hey friends!
Itβs been almost 2β3 months since we last posted anything here π
But now weβre back again β and will start posting regularly! π
From now on, youβll get β
π§© Python Quizzes & Challenges
π Cheat Sheets
π‘ Helpful Tips
π§ Project Ideas & Source Codes
and many more exciting things to make your learning fun and easy! π
Weβre starting again with new energy, so please stay with us and keep supporting π
Also, let us know in the comments β
π What kind of posts or topics do you want to see next?
Your ideas will help us plan our next content β€οΈ
Stay tuned & keep coding π»
Hey friends!
Itβs been almost 2β3 months since we last posted anything here π
But now weβre back again β and will start posting regularly! π
From now on, youβll get β
π§© Python Quizzes & Challenges
π Cheat Sheets
π‘ Helpful Tips
π§ Project Ideas & Source Codes
and many more exciting things to make your learning fun and easy! π
Weβre starting again with new energy, so please stay with us and keep supporting π
Also, let us know in the comments β
π What kind of posts or topics do you want to see next?
Your ideas will help us plan our next content β€οΈ
Stay tuned & keep coding π»
@python_programming_42
#PythonProgramming #WeAreBack #KeepLearning
β€3π₯°2
Q: Whatβs the difference between List[int] and list[int] in Python 3.9+?
Anonymous Quiz
35%
a) No difference; list[int] is the newer, simpler syntax
44%
b) List[int] is invalid
21%
c) They behave differently in runtime
0%
d) list[int] is slower
β€3π₯1
190+ Python Interview Questions and Answers.pdf
1.1 MB
190+ Python Interview Questions and Answers π
Do not forget to React β€οΈ to this Message for More Content Like this
Thanks For Joining All β€οΈβ€1π₯1π₯°1
Q: What is the type of the result of 3 / 2 in Python 3?
Anonymous Quiz
8%
a) int
77%
b) float
8%
c) double
6%
d) fraction
π2β€1
Python DS question.pdf
218.7 KB
Python DS Question π
Do not forget to React β€οΈ to this Message for More Content Like this
Thanks For Joining All β€οΈβ€3π₯°1
Q: What does 5 ** 2 mean in Python?
Anonymous Quiz
7%
a) 5 Γ 2
84%
b) 5 raised to the power 2
7%
c) 5 divided by 2
2%
d) 5 modulo 2
β€1π₯1
1.1 5.2.Python String Coding Interview Questions.pdf
499 KB
Python String Coding Interview Questions π
Do not forget to React β€οΈ to this Message for More Content Like this
Thanks For Joining All β€οΈβ€2
β€2
π Common Python Syntax Bug Issues
1. Indentation Errors
if True:
print("Hello") β IndentationError
print("Hello") β Correct indentation
2. Missing Colons
if x == 5 β SyntaxError
if x == 5: β Correct
3. Misusing = vs ==
x = 5
if x = 5: β SyntaxError
if x == 5: β Correct
4. Case Sensitivity
name = "Alice"
print(Name) β NameError (Python is case-sensitive)
print(name) β Correct
5. Unclosed Strings or Brackets
msg = "Hello β SyntaxError
msg = "Hello" β Correct
6. Wrong Indentation in Functions
def test():
print("oops") β IndentationError
print("works") β Correct
7. Using Keywords as Identifiers
class = "Math" β SyntaxError
class_name = "Math" β Correct
8. Trailing Symbols
print("Hi"!) β SyntaxError
print("Hi!") β Correct
9. Improper Imports
from . import mymodule β outside a package
import mymodule β Correct
10. Line Break Issues
total = 1 +
2 + 3 β SyntaxError
total = (1 +
2 + 3) β Correct
1. Indentation Errors
if True:
print("Hello") β IndentationError
print("Hello") β Correct indentation
2. Missing Colons
if x == 5 β SyntaxError
if x == 5: β Correct
3. Misusing = vs ==
x = 5
if x = 5: β SyntaxError
if x == 5: β Correct
4. Case Sensitivity
name = "Alice"
print(Name) β NameError (Python is case-sensitive)
print(name) β Correct
5. Unclosed Strings or Brackets
msg = "Hello β SyntaxError
msg = "Hello" β Correct
6. Wrong Indentation in Functions
def test():
print("oops") β IndentationError
print("works") β Correct
7. Using Keywords as Identifiers
class = "Math" β SyntaxError
class_name = "Math" β Correct
8. Trailing Symbols
print("Hi"!) β SyntaxError
print("Hi!") β Correct
9. Improper Imports
from . import mymodule β outside a package
import mymodule β Correct
10. Line Break Issues
total = 1 +
2 + 3 β SyntaxError
total = (1 +
2 + 3) β Correct
Do not forget to React β€οΈ to this Message for More Content Like this
Thanks For Joining All β€οΈβ€3π₯2