Skip to main content

Posts

Showing posts with the label become expert in programming

How to impress my girlfriend who loves Python programming language?

 How to impress my girlfriend who loves Python programming language? Here...How to impress my girlfriend who loves Python programming language to              help you make the new concepts, you are learning programming               Languages are really very important. 1.Some ideas:  ->Be a good listener. Ask good questions about what they're talking about.  ->Tell interesting, funny stories. Express yourself well.  ->Know about (and take the person) to a really good restaurant that's not common knowledge. Show respect and courtesy to the staff there. ->Have fun!!! Make the date easy and comfortable, for both of you. ->If the situation allows, bust out some killer dance moves. ->In short, impress a computer programmer in the same way you'd impress anyone else.       Don't try to learn some computer jargon to show that you understand computers...that will only work on people who don't know anything about computers so you'd be using computer jar

How to make an assignment software with Django? OR How to make the Django project Explain step by step?

😀 How to make an assignment software with Django? OR How to make the Django project Explain step by step?😁 Here How to make an assignment software with Django? OR, How to make a Django project Explain step by step to help you make the new             concepts, you are learning to program             Languages were really very important. Prerequisites: Set up a Django development environment.  Objective: To be able to use Django's tools to start your own new website projects. Initial Set-Up To begin, navigate to a new directory on your computer. For example,  we can create a HelloWorld folder on the Desktop with the following commands. $ cd ~/Desktop $ mkdir helloworld && cd helloworld Make sure you’re not already in an existing virtual environment at this point.  If you see text in parentheses () before the dollar sign ($) then you are. To exit it, type exit and hit Return. The parentheses should disappear which means that the virtual environment is no longer active. We’l

Data Structure Problem | Logical Question | Data Structure Problem Question to become master in DS

😀 Collection of Data Structure Problems question. If you do this we will become a good Date Structure Developers. If you want this My YouTube channel then go through the below link. Youtube Channel:https://www.youtube.com/channel/UCgcpEPz_96MJAXGDtn1xmVg/videos?view_as=subscriber click hear Topic:  Problem:  Array Reverse the array Array Find the maximum and minimum element in an array Array Find the "Kth" max and min element of an array  Array Given an array that consists of only 0, 1, and 2. Sort the array without using any sorting algo Array Move all the negative elements to one side of the array  Array Find the Union and Intersection of the two sorted arrays. Array Write a program to cyclically rotate an array by one. Array find Largest sum contiguous Subarray [V. IMP] Array Minimise the maximum difference between heights [V.IMP] Array Minimum no. of Jumps to reach the end of an array Array find duplicate in an array of N+1 Integers Array Merge

How to learn Python without a compute

 How to learn Python without a computer OR Is it possible to learn Python without a computer or pc Here...How to learn Python without a computer OR Is it possible to learn Python without a computer or pc      There are some excellent idea to help you make the new concepts, you are learning  .................................................................................... You must be practicing the exercise given in your book to  understand the code wholly and build confidence in writing code… If you lack a computer, You can practice code in  your mobile too, if you have a smartphone. Get the app from your store(AppStore / play store): offline python IDE ................................................................................. No, you couldn’t. Save up for a computer, for simple python stuff, it can be a  a very, very cheap one, a Raspberry Pi is more than enough. "Without a computer, you’re just reading a book " Python is easy to use, powerful, and versatile, makin

What is Django core management system? | Django core management system

What is the Django core management system? I am going to explore everything about this. Here...is Django core management system          There are some excellent idea to help you make the new concepts, you are learning  management. base BaseCommand Example Code. BaseCommand is a  Django object for creating new Django admin commands that can be invoked with the manage.py script. The Django project team as usual provides fantastic documentation for creating your own commands.   #Source code for django.core.management.base #Base classes for writing management commands (named commands which can #be executed through ``Django-admin`` or ``manage.py``). from __future__ import unicode_literals import os import sys from argparse import ArgumentParser import django from django.core import checks from django.core.exceptions import ImproperlyConfigured from django.core.management.color import color_style, no_style from django.db import DEFAULT_DB_ALIAS, connections from django.db.migrations.except