Strings
- Python strings
- Refer Here for string interpolation
dunder members or methods
- in python whenever you see any thing with double underscores around it, it has a special purpose
__name__
__init__
__new__
- A python module can be executed or imported. A python module when execute directly will have a variable
__name__with value__main__in it, but when importe by other module variable__name__with value module name
Exerices
- solution for is_prime, factors and prime factors Refer Here
- Try atleast 10 problems in hacker rank.
