ASHISH SRIVASTAVA
(Move to ...)
▼
Tuesday 18 June 2019
Excel read, Two days different in Python
›
Program: import pandas as pd df = pd.read_excel('CompleteData2.xlsx', sheet_name='Test') df.DOA = pd.to_datetime(df[...
Saturday 1 June 2019
View a List of Databases on an Instance of SQL Server
›
Query 1: SELECT name, database_id, create_date FROM sys.databases ; If u need only the User-defined databases; Query 1: select ...
Thursday 16 May 2019
Top 10 Web Application Security Risks
›
Injection Injection flaws, such as SQL injection, LDAP injection, and CRLF injection, occur when an attacker sends untrusted data to an ...
1 comment:
Sunday 6 January 2019
Getting Available Server Disk Space (Total Size / Free Space) SQL Query
›
SELECT distinct(volume_mount_point), total_bytes/1048576 as Size_in_MB, total_bytes/1048576/1024 as Size_in_GB, available_bytes/1048576 ...
1 comment:
Saturday 28 July 2018
Find Largest Element of an Array using Function in Python
›
# Find Largest Element of an Array using Function # python function to find maximum # in arr[] of size n def largest(arr,n): # Initi...
1 comment:
Thursday 26 July 2018
Swap two variables without using third variable in Python
›
# Swap two variables without using third variable in Python a = input(" Please Enter the First Number: ") b = input(" Ple...
Wednesday 25 July 2018
Two Number Sum in Python
›
# Simple Python program to Add Two Numbers number1 = input(" Please Enter the First Number: ") number2 = input(" Please E...
‹
›
Home
View web version