Prove that tanq+Secq-1÷tanq-secq+1=cosq÷1-sinq

Here am going to explain the steps Prove that tanq+Secq-1÷tanq-secq+1=cosq÷1-sinq

LHS => tanq+Secq-1/tanq-secq+1

=> (sinQ/cosQ+1/cosQ-1)/(sinQ/cosQ-1/cosQ+1) (divide nominator and denominate by cosQ)

=> (sinQ+1-cosQ)/(sinQ-1+cosQ) (Multipy nominator and denominate by (1-sinQ))

=> (1-sinQ)(sinQ+1-cosQ)/(1-sinQ)(sinQ-1+cosQ)

=> (sinQ+1-cosQ-sinQ2-sinQ+sinQ*cosQ)/(1-sinQ)(sinQ-1+cosQ)

=> (1-cosQ-sinQ2+sinQ*cosQ)/(1-sinQ)(sinQ-1+cosQ)
=> (1-sinQ2-cosQ+sinQ*cosQ)/(1-sinQ)(sinQ-1+cosQ)

=> (cosQ2-cosQ+sinQ*cosQ)/(1-sinQ)(sinQ-1+cosQ)
=> cosQ(cosQ-1+sinQ)/(1-sinQ)(sinQ-1+cosQ)

=> cosQ(cosQ-1+sinQ)/(1-sinQ)(cosQ-1+sinQ)
=> cosQ/(1-sinQ) = RHS

Hence proved

How to regenerate HDFC bank new ATM OTP

For security reason all banks are planning to upgrade their ATM card to chip Level, so bank will automatically send new ATM to registered address and the 6 digit OTP they will send as SMS to your mobile number,the validity for that ATM is 30 days,so if you not used within that days it will expire. so the question is How to regenerate HDFC bank new ATM OTP, here are going to explain you how to regenerate HDFC bank new ATM OTP.

Send SMS

Send below sms to 5676712
REPIN [LAST FOUR DIGIT OF YOUR ATM CARD NUMBER]

if you send this sms ,within second you will get a 6 digit otp,we can use this otp to set new atm pin from any of the hdfc bank atm,you should type the new opt followed by your registered mobile number
if your not registered with phone banking,you have to register to phone banking first,below is the structure to register for phone banking

Send SMS to Register Phone banking

Send an SMS to 5676712
REGISTER [YOUR CUSTOMERID][LAST FOUR DIGIT OF YOUR ACCOUNT NUMBER]

How to create new admin user or super user in Django python

we know that Django is one of the most popular framework in python.we already discussed how to install a Djnago frame work in windows .Now we have installed Djnago framework in our system.We read Djnago provide build-in admin panel automaticaly ,so our question is what is the user name and password for admin Django,here am going to explain How to create new admin user in Django.

In Django default admin url is http://127.0.0.1:8000/admin/login/?next=/admin/,when you type http://127.0.0.1:8000/admin/login/?next=/admin/ in your browser ,you will get below User Interface

add New Admin user in Django

To Login above admin side we need admin user name and password ,see here how to create new admin user in Django

python manage.py createsuperuser

It will ask you new admin user info for your Djnago dashboard

create new admin user in Django

Module Not found error no module named celery in Python Django

When an running my Django python application am getting an error “Module Not found error no module named celery”. as the error says no module celery is not their in system.Since module named celery is not their with sytem we are getting an error “Module Not found error no module named celery in Python Django”.To solve this error “Module Not found error no module named celery in Python Django”, we have to install celery module in your system, to install celery we have to use PIP command.if pip is not installed with your first you to install pip after run below commands .

Install celery module in Django python

# pip install celery

Module Not found error no module named celery in Python Django