Python: Difference between revisions

From Wiki RB4
Line 18: Line 18:
==Operation==
==Operation==
===Comannd Line===
===Comannd Line===
python -V // prints version
  python
  python
  >>> <COMMAND>
  >>> <COMMAND>

Revision as of 21:02, 13 September 2021

Resources

Language

Python, named after the British comedy group Monty Python, is a high-level, interpreted, interactive, and object-oriented programming language.

Comment

# ... till end of line

Frameworks

Flask

Flask is a micro web framework written in Python. To enable to run a flask application as a 'normal' python app with

python <FILE>

add to end of file

if __name__ == '__main__':
 app.run()

Operation

Comannd Line

python -V // prints version
python
>>> <COMMAND>

Installation