2.Python Assignment : FOR LOOP techsolution July 30, 2021 Assignment : Program to print the table of the given number . list = [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ] n = 5 for i in list: c... Read More
PYTHON EXERCISES FOR IF ELSE techsolution July 25, 2021 Q1: a = 10 b = "This is python" c = 10.5 print ( type (a)) print ( type (b)) print ( type (c)) Output <class 'int'>... 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&quo... 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
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