DATE FORMATE IN MYSQL techsolution September 11, 2020Note : STR_TO_DATE convert date in YY-MM-YY like we should be keep format same select str_to_date('2020/10/01','%Y/%m%d') ... Read More
b).How to find the duplicate value in mysql techsolution September 11, 2020 select Name,count(*) from emp group by Name having count(*)>1 ; Read More
Enumerate Function in python techsolution September 10, 2020 It is give index and item so we can use index or item values in enumerate function I want to print odd value items ll = [ "A... Read More
Virtual Environment & Requirements | Python techsolution September 10, 2020 I have python source code in 3.5 but I want to use this code in 3.6 so we need create Virtual environment . Need ? I have create website ... Read More
Project in Python - Daily Routine Plane using file handling techsolution September 04, 2020 Learn python : Learn Python step by step Program : Daily Routine Plane using file handling from datetime import datetime def getdat... Read More
Python techsolution August 23, 2020 PIP is python package manager .PIP is used for download . Write first program in python . Part 1: #vim first.py #first program in python... Read More