0:00
Python is a high-level programming language and is popular due to its adaptability and ease of use
0:06
It was developed by Guido van Raasom in 1991. We simply type our text in clause by double or single chords and precede it by the keyword
0:16
print. A comment simply starts with a h symbol. We use indentation to define block of chords
0:24
Python provides implicit declaration for variables. The data type is dynamically determined during execution. We can use type function to check for data type
0:36
A list can store values having different data types. Each value can be accessed using its index
0:44
It has bunch of cool built-in methods. While a dictionary stores data in key-value format
0:51
the values are accessed using the associated keys. Again, it has got a list of its own methods as well
1:01
A for loop will iterate over an iterable object. Could be used with lists, strings, dictionaries
1:10
strings, dictionaries, tuples, and sets. Could also work with a range function
1:20
The while loop runs until the given condition is true. We can run a block of code based on a given condition
1:29
A function is a piece of code that is executed when being called
1:33
A function may have no arguments. This helps us in reusability. Python comes with a huge set of external modules that can be installed before using them
1:49
To install a module, simply type pip install and then the module name in your terminal
2:03
I got some basic project ideas for you as a beginner. To-do list app, a calculator, a weather app, currency converter, and finally a quiz app
2:19
You can start to learn Python right now