Environment variable are used by the system and user to find the location of various path which are initialized at the time of booting operating system on the system.
Python Debugger In python for debugging we can import pdb module which come along with python itself . for more information you can refer link import pdb val=int(input("Enter Value")) pdb.set_trace() #breakpoint print(val) val=30 pdb.set_trace() print(val) pdb.pm() # end python debugging
Data Structure :It's simply a way of organising data so that we can perform various operations like search,add,delete etc efficiently. Examples : Stack,Queue,Tree,Trie,Maps,Graphs etc Data type : It is a classification of data which tells the compiler or interpreter how the programmer intends to use the data. Eg double,float,string,char etc. You can also create your own data type using structure. struct mydatatype { int rollno; string name; }; Reference Heramb Mathkar , IT Engineering student at VJTI,Mumbai
Comments
Post a Comment