Python basics

What you will learn

Python course covers fundamentals like data types, operators, control flow, functions, and object-oriented programming to help beginners

It includes lessons, quizzes, projects like virtual assistant and web development

A real time web development projects

complete case study and end to end web development projects

Python is the best programming language for developing many application like web application,Game,soft ware development,databases Net working programming s

Why take this course?

This free online Python course covers fundamentals like data types, operators, control flow, functions, and object-oriented programming to help beginners build a strong foundation.

It includes lessons, quizzes, projects like virtual assistant and web development with Flask to provide practical learning.

starting with basic ‘hello world’ programming to web appilicatons along variables,statements,functions etc..

Learn basic condtional statements ,defining functions and objects of the python programming.

Also creating basic routing of flask with local server


Get Instant Notification of New Courses on our Telegram channel.


First we imported the Flask class. An instance of this class will be our WSGI application.

Next we create an instance of this class. The first argument is the name of the applicationโ€™s module or package. __name__ is a convenient shortcut for this that is appropriate for most cases. This is needed so that Flask knows where to look for resources such as templates and static files.

We then use the route() decorator to tell Flask what URL should trigger our function.

The function returns the message we want to display in the userโ€™s browser. The default content type is HTML, so HTML in the string will be rendered by the browser.

weโ€™ll create a simple app and start our server just to make sure things are setup right

English
language