Online Python - IDE, Editor, Compiler, Interpreter
Online Python - IDE, Editor, Compiler, Interpreter
main.py +
1 #Password Checker
2 print("Welcome to PGO Security Systems")
3 print("*******************************")
4 password = input("Enter your password: ")
5 if password == "abcd1234":
6 print("Access Granted")
7 else:
8 print("Access Denied")
9 print("Press ENTER to exit the program")
Ln: 8, Col: 1
*******************************
Enter your password:
Abcd1234
Access Denied
Press ENTER to exit the program
** Process exited - Return Code: 0 **
Press Enter to exit terminal
About Python
Python, which was initially developed by Guido van Rossum and made available to the public in 1991, is currently one of the most widely used general-
purpose programming languages. Python's source code is freely available to the public, and its usage and distribution are unrestricted, including for
commercial purposes. It is widely used for web development, and using it, practically anything can be created, including mobile apps, online apps, tools,
data analytics, machine learning, and so on. It is intended to be straightforward and uncomplicated, much like the English language. When compared to
other programming languages such as C++, Java, and C#, it is a lot simpler to read and write Python programs. Because of its excellent productivity and
e!iciency, it has become a very popular choice for use as a programming language.
To learn more about Python check out some of the following links.
python.org
Wikipedia - Python
w3schools.com - Python Tutorial
programiz.com - Python Tutorial
···