Posts

Showing posts with the label python

Online Tender Management System Using Python

Image
Online Tender Management System Using Python Aim of Tender Management System: The activity will happen through the software which will be a web-based system. The user can get the available tender by accessing through the system.  At the time of registration, they will provide with a user Id and password after that customer can know the details of the tenders.  This system also provide the security like it will not allow any other members to access the same details. Software Requirement for Tender Management System: Operating System Windows 8 or above Tools used Microsoft visual code or Sublime or IDLE or Pycharm Programming languages Python Front end design HTML,CSS,JS Back-end design Python Contact me if you have any questions or need a project Email aryadrj@gmail.com FB messenger aryadrj Whatsapp +917892657546 Phone Number +917892657546 Or you can fill the form (To get instant help) Click here to fill the form Want to know about me? Click here to open

How to generate good secret keys in python?

Image
How to generate good secret keys in python?  A secret key should be as random as possible Your operating system has ways to generate pretty random stuff based on a cryptographic random generator which can be used to get such a key. Code : import os result=os.urandom(24) print(result) If you run this code, you will get one random string which can be considered as secret key. Just copy the key and paste it into your project. urandom() method is used to generate a string of size random bytes which is very suitable for cryptographic. Thank you

Python problem and solutions/Development Center

Image
Python problem and solutions/Development Center Problems Error 1:   TypeError: cannot unpack non-iterable int object. Error 2:   ValueError: invalid literal for int() with base 10: '20 30'. Error 3:   'python' is not recognized as an internal or external command. Error 4:   'pip' is not recognized as an internal or external command. Error 5:   ModuleNotFoundError: No module named 'PIL'. Error 6:   Float object has no attribute. Error 7:   Any Invalid syntax Error. Solution If you want solution then you can contact me: Email aryadrj@gmail.com FB messenger aryadrj Twitter @aryadrj Instagram(only message) aryadrj Or you can fill the form Click here to fill the form Want to know about me? Click here to open

Data structure Questions bank in python

Image
Data structure Question bank in python What is data structure? Why should we use data structure? What is difference array and list? What are the fundamental of data structure? Explain list. Advantage of list. Why we are using lists in data structure? What is linked list? Why to use linked list? Where we can use linked list? Explain linked list with diagram. How to traverse the linked list in python? How to append the elements to the linked list in python? How to insert the elements into the linked list in python? How to remove the elements from the linked list in python? How to replace the elements in the linked list in python? How to search the element location in the linked list in python? How to find the size of linked list? Write a python program to create a linked list and perform operations on the list. What is stack? What is peep operation ? Write a python program to perform push,pop,peep,search operations on stack using stack class and also writ

Top 5 programming language which give you high salary in 2019-2020

Image
Top 5 programming language in 2019-20 Top 5 programming language Here are the list of top 5 programming languages which gives you high salary. 1.Python 2. C & C++ 3. Javascript 4. Java 5. Go Description Python Advantages : 1) Presence of third-party modules 2) Extensive support libraries(NumPy for numerical calculations, Pandas for data analytics etc) 3) Open source and community development 4) Easy to learn 5) User-friendly data structures 6) High-level language 7) Dynamically typed language(No need to mention data type based on value assigned, it takes data type) 8) Object-oriented language 9) Portable and Interactive 10) Portable across Operating systems Applications : 1) GUI based desktop applications(Games, Scientific Applications) 2) Web frameworks and applications 3) Enterprise and Business applications 4) Operating Systems 5) Language Development 6) Prototyping Organizations using Pytho

DBMS mini project

Image
DBMS mini project  What is DBMS mini project? DBMS stand for Data Base Management System. In DBMS Mini Project Users of the system are given facilities to perform several kinds of operations on such a system for either manipulation of the data in the database or the management of the database structure itself. What DBMS Mini Project contains? Project should contains  ER Diagram. ER-Mapping rules. Normalization. DBMS Mini project Application/Software should have five or more tables . DBMS Mini project Application/Software should have at least one trigger . DBMS Mini project Application/Software should have at least one one stored procedure . DBMS Mini project Application/Software should have suitable frontend tool . DBMS Mini project Application/Software should have indicative areas include; health care, education, industry, transport, supply chain,  etc .  Use  Java, C#, PHP, Python, or any other similar front-end tool .  All applications must be demonstrated on desktop/laptop as

Some coolest things in python may be you don't know [Python part 3]

Image
Some coolest things in python may be you don't know Displaying Hello world in  Java! Displaying Hello world in python 1. Swapping of numbers In other language a=a+b; b=a-b; a=a-b; In python language: a,b=.b,a   #swap two number without additional varible 2.Number System Conversion print(bin(2)) print(hex(10)) Output-> 0b10 0xa 3.Concept in 2 lines a=int(input()) print(("Not Multiple of 5", "Multiple of 5")[a%5==0]) Input-> 10 Output-> multiple of 5 4.Display Calender of any year import calendar cal = calendar.month(2017,11) print(cal) Output-> 5. interpreter will store your last value. get it with the help of  _ >>> 2**2 4 >>> _ 4 >>>  6.Boolean takes interger value a=[2,3,4,5] print a[True] print a[false] output-> 3 2 7.  Reverse the list itself: mylist = [1,2,3] mylist.reverse()