Aishwarya Tilekar

Creating first Django Project (Hello World in Django)

How to create “Hello world” program in django. Creating a “Hello, World!” application in Django is a simple process. Django is a Python web framework that allows you to build powerful web applications quickly and efficiently. Here’s a step-by-step guide to creating a basic “Hello, World!” Django application:     1. Install Django: Make sure …

Creating first Django Project (Hello World in Django) Read More »

Programming Assignments:TY B.sc(computer application)

TY B.sc(computer application) Control Statements and Loops 1) Write a Python Program to Check if a Number is Positive, Negative or Zero def check_number(num): if num > 0: print(“The number is positive.”) elif num < 0: print(“The number is negative.”) else: print(“The number is zero.”) # Test the program with different numbers check_number(10) # Output: …

Programming Assignments:TY B.sc(computer application) Read More »

Tech Amplifier Final Logo