complete python syllabus

complete python syllabus from zero to hero...

Introduction:

Getting Started

Python syntax

Keywords and Identifiers

Statements & Comments,escape sequences.

Python Variables

Python Datatypes

Python Type Conversion (python casting)

Python Numbers

Python List

Python Tuple

Python String (String methods)

Python Set

Python Dictionary

Python Operators

Python I/O and import

Python Namespace

python literals

python files i/o and usage, modes

Python File Operation (writing, appending)

using seek(),tell(), on files

Python Directory

Python Exception

Python Try...Except

Python User Input

Python String Formatting

Python Exception Handling

Python User-defined Exception

Python Flow Control:

Python if else

Python for Loop

Python while Loop

Python break and continue

Python Pass

Python Arrays

Python Functions and docstrings

Function Argument

Python Recursion

Anonymous Function

Global, Local and Nonlocal

Python Global Keyword

Python Object & Class

Python OOP

Python Class

Python Inheritance

single,Multiple, multilevel Inheritance

Operator Overloading

Python Modules

Python Package

Python Scope

Python Modules

Python Dates

Python Math

Python JSON

Python RegEx

Python PIP

Python Advanced Topics

Python Iterators

Python Generator

Python Closure

Python Decorators

Python Property

Python RegEx

Python Date & Time

Python DateTime Module

Python DateTime.strftime()

Python DateTime.strptime()

Current date & time

Get current time

Timestamp to DateTime

Python time Module

Python time.sleep()






sample

text

how to learn programming faster.

 here are seven tips on how to learn programming faster.

1. Learn by doing...

2. Grasp the fundamentals for long-term benefits. 

3. Code by hand....

4. Ask for help....

5. Seek out more online resources. ...

6. Don't just read the sample code....

7. Take breaks when debugging.

shortcut keys

 


shortcut keys


# windows + v to copy multiple data and copy at various positions.

# windows >  --> to set multiple windows or positions if more than one window is available.

# to open taskbar windows press the window button and their position number.

# ex: Windows 1

# windows + d to minimize all windows at a time.

# to delete a word press ctrl + backspace 

# where backspace deletes only a character

# windows + tab to see recent windows opened.  and  alt + tab to select the required tab i.e., it is easy to navigate between various tabs 

# shift + home and end keys to copy the data 

# windows + p to move from multiple monitors 

# Windows + L  to lock  the screen 

# press mouse wheel to open in new window



to convert text into qrcode

 import qrcode

inputtext = "this is a text"

qrimg = qrcode.make(inputtext)

qrimg.save("filename.png")

to remove space from string

 a = "this is a text with space"

b = a.replace(" ","")
print(b)

ans: thisisatextwithspace

python tip1

Do u know?


 2**3**2

=2**9

=2*2*2*2*2*2*2*2*2
ans =512


do you know the answer?

x=1_2_5
y=2
res =x*y
print(res)

ans: 250