id int64 0 25.6k | text stringlengths 0 4.59k |
|---|---|
11,000 | venture of iit bombay vjti alumni resets the time conversion rules used by the library routines the environment variable tz specifies how this is done let us go through the functions briefly there are following two important attributes available with time module sr no attribute with description time timezone attribute ... |
11,001 | venture of iit bombay vjti alumni the calendar module supplies calendar-related functionsincluding functions to print text calendar for given month or year by defaultcalendar takes monday as the first day of the week and sunday as the last one to change thiscall calendar setfirstweekday(function here is list of functio... |
11,002 | venture of iit bombay vjti alumni calendar isleap(yearreturns true if year is leap yearotherwisefalse calendar leapdays( , returns the total number of leap days in the years within range( , calendar month(year,month, = , = returns multiline string with calendar for month month of year yearone line per week plus two hea... |
11,003 | venture of iit bombay vjti alumni returns two integers the first one is the code of the weekday for the first day of the month month in year yearthe second one is the number of days in the month weekday codes are (mondayto (sunday)month numbers are to calendar prcal(year, = , = , = like print calendar calendar(year, , ... |
11,004 | venture of iit bombay vjti alumni calendar weekday(year,month,dayreturns the weekday code for the given date weekday codes are (mondayto (sunday)month numbers are (januaryto (decemberother modules functions if you are interestedthen here you would find list of other important modules and functions to play with date tim... |
11,005 | venture of iit bombay vjti alumni python functions function is block of organizedreusable code that is used to perform singlerelated action functions provide better modularity for your application and high degree of code reusing as you already knowpython gives you many built-in functions like print()etc but you can als... |
11,006 | venture of iit bombay vjti alumni the first statement of function can be an optional statement the documentation string of the function or docstring the code block within every function starts with colon (:and is indented the statement return [expressionexits functionoptionally passing back an expression to the caller ... |
11,007 | venture of iit bombay vjti alumni print str return calling function defining function only gives it namespecifies the parameters that are to be included in the function and structures the blocks of code once the basic structure of function is finalizedyou can execute it by calling it from another function or directly f... |
11,008 | venture of iit bombay vjti alumni now you can call printme function printme(" ' first call to user defined function!"printme("again second call to the same function"when the above code is executedit produces the following result ' first call to user defined functionagain second call to the same function pass by referen... |
11,009 | venture of iit bombay vjti alumni def changememylist )"this changes passed list into this functionmylist append([ , , , ])print "values inside the function"mylist return now you can call changeme function mylist [ , , ]changememylist )print "values outside the function"mylist herewe are maintaining reference of the pas... |
11,010 | venture of iit bombay vjti alumni there is one more example where argument is being passed by reference and the reference is being overwritten inside the called function #!/usr/bin/python function definition is here def changememylist )"this changes passed list into this functionmylist [ , , , ]this would assig new ref... |
11,011 | venture of iit bombay vjti alumni print "values outside the function"mylist the parameter mylist is local to the function changeme changing mylist within the function does not affect mylist the function accomplishes nothing and finally this would produce the following result values inside the function[ values outside t... |
11,012 | venture of iit bombay vjti alumni to call the function printme()you definitely need to pass one argumentotherwise it gives syntax error as follows #!/usr/bin/python function definition is here def printmestr )"this prints passed string into this functionprint str returnnow you can call printme function printme(when the... |
11,013 | venture of iit bombay vjti alumni file "test py"line in printme()typeerrorprintme(takes exactly argument ( givenkeyword arguments keyword arguments are related to the function calls when you use keyword arguments in function callthe caller identifies the arguments by the parameter name this allows you to skip arguments... |
11,014 | venture of iit bombay vjti alumni returnnow you can call printme function printmestr "my string"when the above code is executedit produces the following result my string the following example gives more clear picture note that the order of parameters does not matter #!/usr/bin/python function definition is here def pri... |
11,015 | venture of iit bombay vjti alumni print "age "age returnnow you can call printinfo function printinfoage= name="mikiwhen the above code is executedit produces the following result namemiki age default arguments default argument is an argument that assumes default value if value is not provided in the function call for ... |
11,016 | venture of iit bombay vjti alumni function definition is here def printinfonameage )"this prints passed info into this functionprint "name"name print "age "age returnnow you can call printinfo function printinfoage= name="mikiprintinfoname="mikiwhen the above code is executedit produces the following result namemiki ag... |
11,017 | venture of iit bombay vjti alumni variable-length arguments you may need to process function for more arguments than you specified while defining the function these arguments are called variable-lengtharguments and are not named in the function definitionunlike required and default arguments syntax for function with no... |
11,018 | venture of iit bombay vjti alumni print "output isprint arg for var in vartupleprint var returnnow you can call printinfo function printinfo printinfo when the above code is executedit produces the following result output is output is |
11,019 | venture of iit bombay vjti alumni the anonymous functions these functions are called anonymous because they are not declared in the standard manner by using the def keyword you can use the lambda keyword to create small anonymous functions lambda forms can take any number of arguments but return just one value in the f... |
11,020 | venture of iit bombay vjti alumni lambda [arg [,arg argn]]:expression following is the example to show how lambda form of function works #!/usr/bin/python function definition is here sum lambda arg arg arg arg now you can call sum as function print "value of total "sum print "value of total "sum when the above code is ... |
11,021 | venture of iit bombay vjti alumni the statement return [expressionexits functionoptionally passing back an expression to the caller return statement with no arguments is the same as return none all the above examples are not returning any value you can return value from function as follows #!/usr/bin/python function de... |
11,022 | venture of iit bombay vjti alumni total sum )print "outside the function "total when the above code is executedit produces the following result inside the function outside the function scope of variables all variables in program may not be accessible at all locations in that program this depends on where you have decla... |
11,023 | venture of iit bombay vjti alumni this means that local variables can be accessed only inside the function in which they are declaredwhereas global variables can be accessed throughout the program body by all functions when you call functionthe variables declared inside it are brought into scope following is simple exa... |
11,024 | venture of iit bombay vjti alumni sum )print "outside the function global total "total when the above code is executedit produces the following result inside the function local total outside the function global total |
11,025 | venture of iit bombay vjti alumni python modules module allows you to logically organize your python code grouping related code into module makes the code easier to understand and use module is python object with arbitrarily named attributes that you can bind and reference simplya module is file consisting of python co... |
11,026 | venture of iit bombay vjti alumni return the import statement you can use any python source file as module by executing an import statement in some other python source file the import has the following syntax import module [module [modulenwhen the interpreter encounters an import statementit imports the module if the m... |
11,027 | venture of iit bombay vjti alumni now you can call defined function that module as follows support print_func("zara"when the above code is executedit produces the following result hello zara module is loaded only onceregardless of the number of times it is imported this prevents the module execution from happening over... |
11,028 | venture of iit bombay vjti alumni the from import statement it is also possible to import all names from module into the current namespace by using the following import statement from modname import this provides an easy way to import all the items from module into the current namespacehoweverthis statement should be u... |
11,029 | venture of iit bombay vjti alumni the pythonpath is an environment variableconsisting of list of directories the syntax of pythonpath is the same as that of the shell variable path here is typical pythonpath from windows system set pythonpath :\python \liband here is typical pythonpath from unix system set pythonpath /... |
11,030 | venture of iit bombay vjti alumni the statement global varname tells python that varname is global variable python stops searching the local namespace for the variable for examplewe define variable money in the global namespace within the function moneywe assign money valuetherefore python assumes moneyas local variabl... |
11,031 | venture of iit bombay vjti alumni addmoney(print money the dirfunction the dir(built-in function returns sorted list of strings containing the names defined by module the list contains the names of all the modulesvariables and functions that are defined in module following is simple example #!/usr/bin/python import bui... |
11,032 | venture of iit bombay vjti alumni ['__doc__''__file__''__name__''acos''asin''atan''atan ''ceil''cos''cosh''degrees'' ''exp''fabs''floor''fmod''frexp''hypot''ldexp''log''log ''modf''pi''pow''radians''sin''sinh''sqrt''tan''tanh'herethe special string variable __name__ is the module' nameand __file__is the filename from w... |
11,033 | venture of iit bombay vjti alumni thereforeif you want to reexecute the top-level code in moduleyou can use the reload(function the reload(function imports previously imported module again the syntax of the reload(function is this reload(module_nameheremodule_name is the name of the module you want to reload and not th... |
11,034 | venture of iit bombay vjti alumni def pots()print " ' pots phonesimilar waywe have another two files having different functions with the same name as above phone/isdn py file having function isdn(phone/ py file having function (nowcreate one more file __init__ py in phone directory phone/__init__ py to make all of your... |
11,035 | venture of iit bombay vjti alumni now import your phone package import phone phone pots(phone isdn(phone (when the above code is executedit produces the following result ' pots phone ' phone ' isdn phone in the above examplewe have taken example of single functions in each filebut you can keep multiple functions in you... |
11,036 | venture of iit bombay vjti alumni python files / this covers all the basic / functions available in python for more functionsplease refer to standard python documentation printing to the screen the simplest way to produce output is using the print statement where you can pass zero or more expressions separated by comma... |
11,037 | venture of iit bombay vjti alumni python is really great languageisn' itreading keyboard input python provides two built-in functions to read line of text from standard inputwhich by default comes from the keyboard these functions are raw_input input the raw_input function the raw_input([prompt]function reads one line ... |
11,038 | venture of iit bombay vjti alumni this prompts you to enter any string and it would display same string on the screen when typed "hello python!"its output is like this enter your inputhello python received input is hello python the input function the input([prompt]function is equivalent to raw_inputexcept that it assum... |
11,039 | venture of iit bombay vjti alumni until nowyou have been reading and writing to the standard input and output nowwe will see how to use actual data files python provides basic functions and methods necessary to manipulate files by default you can do most of the file manipulation using file object the open function befo... |
11,040 | venture of iit bombay vjti alumni specify the buffering value as an integer greater than then buffering action is performed with the indicated buffer size if negativethe buffer size is the system default(default behaviorhere is list of the different modes of opening file sr no modes description opens file for reading o... |
11,041 | venture of iit bombay vjti alumni rbopens file for both reading and writing in binary format the file pointer placed at the beginning of the file opens file for writing only overwrites the file if the file exists if the file does not existcreates new file for writing wb opens file for writing only in binary format over... |
11,042 | venture of iit bombay vjti alumni wbopens file for both writing and reading in binary format overwrites the existing file if the file exists if the file does not existcreates new file for reading and writing opens file for appending the file pointer is at the end of the file if the file exists that isthe file is in the... |
11,043 | venture of iit bombay vjti alumni append mode if the file does not existit creates new file for reading and writing abopens file for both appending and reading in binary format the file pointer is at the end of the file if the file exists the file opens in the append mode if the file does not existit creates new file f... |
11,044 | venture of iit bombay vjti alumni file mode returns access mode with which file was opened file name returns name of the file file softspace returns false if space explicitly required with printtrue otherwise example #!/usr/bin/python open file fo open("foo txt""wb"print "name of the file"fo name |
11,045 | venture of iit bombay vjti alumni print "closed or not "fo closed print "opening mode "fo mode print "softspace flag "fo softspace this produces the following result name of the filefoo txt closed or not false opening mode wb softspace flag the close(method the close(method of file object flushes any unwritten informat... |
11,046 | venture of iit bombay vjti alumni example #!/usr/bin/python open file fo open("foo txt""wb"print "name of the file"fo name close opend file fo close(this produces the following result name of the filefoo txt reading and writing files the file object provides set of access methods to make our lives easier we would see h... |
11,047 | venture of iit bombay vjti alumni the write(method the write(method writes any string to an open file it is important to note that python strings can have binary data and not just text the write(method does not add newline character ('\ 'to the end of the string syntax fileobject write(string)herepassed parameter is th... |
11,048 | venture of iit bombay vjti alumni close opend file fo close(the above method would create foo txt file and would write given content in that file and finally it would close that file if you would open this fileit would have following content python is great language yeah its great!the read(method the read(method reads ... |
11,049 | venture of iit bombay vjti alumni example let' take file foo txtwhich we created above #!/usr/bin/python open file fo open("foo txt"" +"str fo read( )print "read string is "str close opend file fo close(this produces the following result read string is python is file positions |
11,050 | venture of iit bombay vjti alumni the tell(method tells you the current position within the filein other wordsthe next read or write will occur at that many bytes from the beginning of the file the seek(offset[from]method the offsetargument indicates the changes number the current of bytes file to be position moved the... |
11,051 | venture of iit bombay vjti alumni check current position position fo tell()print "current file position "position reposition pointer at the beginning once again position fo seek( )str fo read( )print "again read string is "str close opend file fo close(this produces the following result read string is python is current... |
11,052 | venture of iit bombay vjti alumni again read string is python is renaming and deleting files python os module provides methods that help you perform file-processing operationssuch as renaming and deleting files to use this module you need to import it first and then you can call any related functions the rename(method ... |
11,053 | venture of iit bombay vjti alumni rename file from test txt to test txt os rename"test txt""test txtthe remove(method you can use the remove(method to delete files by supplying the name of the file to be deleted as the argument syntax os remove(file_nameexample following is the example to delete an existing file test t... |
11,054 | venture of iit bombay vjti alumni os remove("text txt"directories in python all files are contained within various directoriesand python has no problem handling these too the os module has several methods that help you createremoveand change directories the mkdir(method you can use the mkdir(method of the os module to ... |
11,055 | venture of iit bombay vjti alumni import os create directory "testos mkdir("test"the chdir(method you can use the chdir(method to change the current directory the chdir(method takes an argumentwhich is the name of the directory that you want to make the current directory syntax os chdir("newdir"example following is the... |
11,056 | venture of iit bombay vjti alumni import os changing directory to "/home/newdiros chdir("/home/newdir"the getcwd(method the getcwd(method displays the current working directory syntax os getcwd(example following is the example to give current directory #!/usr/bin/python import os this would give location of the current... |
11,057 | venture of iit bombay vjti alumni os getcwd(the rmdir(method the rmdir(method deletes the directorywhich is passed as an argument in the method before removing directoryall the contents in it should be removed syntax os rmdir('dirname'example following is the example to remove "/tmp/testdirectory it is required to give... |
11,058 | venture of iit bombay vjti alumni os rmdir"/tmp/testfile directory related methods there are three important sourceswhich provide wide range of utility methods to handle and manipulate files directories on windows and unix operating systems they are as follows file object methodsthe file object provides functions to ma... |
11,059 | venture of iit bombay vjti alumni sr no exception name description exception base class for all exceptions stopiteration raised when the next(method of an iterator does not point to any object systemexit raised by the sys exit(function standarderror base class for all built-in exceptions except stopiteration and system... |
11,060 | venture of iit bombay vjti alumni overflowerror raised when calculation exceeds maximum limit for numeric type floatingpointerror raised when floating point calculation fails zerodivisionerror raised when division or modulo by zero takes place for all numeric types assertionerror raised in case of failure of the assert... |
11,061 | venture of iit bombay vjti alumni raised when there is no input from either the raw_input(or input(function and the end of file is reached importerror raised when an import statement fails keyboardinterrupt raised when the user interrupts program executionusually by pressing ctrl+ lookuperror base class for all lookup ... |
11,062 | venture of iit bombay vjti alumni nameerror raised when an identifier is not found in the local or global namespace unboundlocalerror raised when trying to access local variable in function or method but no value has been assigned to it environmenterror base class for all exceptions that occur outside the python enviro... |
11,063 | venture of iit bombay vjti alumni raised for operating system-related errors syntaxerror raised when there is an error in python syntax indentationerror raised when indentation is not specified properly systemerror raised when the interpreter finds an internal problembut when this error is encountered the python interp... |
11,064 | venture of iit bombay vjti alumni for the specified data type valueerror raised when the built-in function for data type has the valid type of argumentsbut the arguments have invalid values specified runtimeerror raised when generated error does not fall into any category notimplementederror raised when an abstract met... |
11,065 | venture of iit bombay vjti alumni the easiest way to think of an assertion is to liken it to raise-if statement (or to be more accuratea raise-if-not statementan expression is testedand if the result comes up falsean exception is raised assertions are carried out by the assert statementthe newest keyword to pythonintro... |
11,066 | venture of iit bombay vjti alumni example here is function that converts temperature from degrees kelvin to degrees fahrenheit since zero degrees kelvin is as cold as it getsthe function bails out if it sees negative temperature #!/usr/bin/python def kelvintofahrenheit(temperature)assert (temperature > ),"colder than a... |
11,067 | venture of iit bombay vjti alumni print kelvintofahrenheit(- file "test py"line in kelvintofahrenheit assert (temperature > ),"colder than absolute zero!assertionerrorcolder than absolute zerowhat is exceptionan exception is an eventwhich occurs during the execution of program that disrupts the normal flow of the progr... |
11,068 | venture of iit bombay vjti alumni tryyou do your operations hereexcept exceptioniif there is exceptionithen execute this block except exceptioniiif there is exceptioniithen execute this block elseif there is no exception then execute this block here are few important points about the above-mentioned syntax single try s... |
11,069 | venture of iit bombay vjti alumni example this example opens filewrites content in thefile and comes out gracefully because there is no problem at all #!/usr/bin/python tryfh open("testfile"" "fh write("this is my test file for exception handling!!"except ioerrorprint "errorcan\' find file or read dataelseprint "writte... |
11,070 | venture of iit bombay vjti alumni written content in the file successfully example this example tries to open file where you do not have write permissionso it raises an exception #!/usr/bin/python tryfh open("testfile"" "fh write("this is my test file for exception handling!!"except ioerrorprint "errorcan\' find file o... |
11,071 | venture of iit bombay vjti alumni errorcan' find file or read data the except clause with no exceptions you can also use the except statement with no exceptions defined as follows tryyou do your operations hereexceptif there is any exceptionthen execute this block elseif there is no exception then execute this block th... |
11,072 | venture of iit bombay vjti alumni tryyou do your operations hereexcept(exception [exception [exceptionn]]])if there is any exception from the given exception listthen execute this block elseif there is no exception then execute this block the try-finally clause you can use finallyblock along with tryblock the finally b... |
11,073 | venture of iit bombay vjti alumni you do your operations heredue to any exceptionthis may be skipped finallythis would always be executed you cannot use else clause as well along with finally clause example #!/usr/bin/python tryfh open("testfile"" "fh write("this is my test file for exception handling!!"finally |
11,074 | venture of iit bombay vjti alumni print "errorcan\' find file or read dataif you do not have permission to open the file in writing modethen this will produce the following result errorcan' find file or read data same example can be written more cleanly as follows #!/usr/bin/python tryfh open("testfile"" "tryfh write("... |
11,075 | venture of iit bombay vjti alumni finallyprint "going to close the filefh close(except ioerrorprint "errorcan\' find file or read datawhen an exception is thrown in the try blockthe execution immediately passes to the finally block after all the statements in the finally block are executedthe exception is raised again ... |
11,076 | sscasc@tumkur python has very powerful but simplistic way of doing oopespecially when compared to big languages like +or java interpretedpython converts the source code into an intermediate form called byte codes and then translates this into the native language of your computer using pvm(is interpreterand then runs it... |
11,077 | it has switch-case statement the variable in for loop does not incremented automatically memory allocation and de-allocation is not automatic it does not contain garbage collection it supports single and multi dimensional arrays the array index should be positive integer indentation of statements in not necessary semic... |
11,078 | sscasc@tumkur python virtual machine (pvmor interpreter python converts the source code into byte code byte code represents the fixed set of instructions created by python developers representing all types of operations the size of each byte code instruction is byte the role of pvm is to convert the byte code instructi... |
11,079 | sscasc@tumkur create new file named example py and following code to itprint("welcome to python program"print("bca th sem"print("sscasc tumkur"by conventionall python programs have py extension the file example py is called source code or source file or script file or module execute by typing the following command an o... |
11,080 | ii iii iv sscasc@tumkur only alphabetsdigits and underscores are permitted distinguish between uppercase and lowercase alphabets keywords should not be used as identifiers no blank space between the identifiers valid identifiers area area_tri num keywordsthe keywords have predefined meaning assigned by the python compl... |
11,081 | sscasc@tumkur inside the moduleconstants are written in all capital letters and underscores separating the words eg create constant py pi literals literal is raw data given in variable or constant in pythonthere are various types of literals they are as followsa numeric literals numeric literals are immutable (unchange... |
11,082 | sscasc@tumkur none data type the none data type represents an object that does not contain any value in java language it is called "nullobject but in python it is called as "nonein python maximum of only one 'noneobject is provided if no value is passed to the functionthen the default value will be taken as 'noneii num... |
11,083 | sscasc@tumkur str data type the str represents string data type string is collection of character enclosed in single or double quotes both are valid str="kvnstr is name of string variable str='vedishstr is name of string variable triple double quote or triple single quotes are used to embed string in another string (ne... |
11,084 | sscasc@tumkur frozen set data type set data typeto create setwe should enter the elements separated by comma inside curly brace { , , print(sit display { , , , in the above exampleit displays un-orderly and repeated elements only oncebecause set is unordered collection and unique items we can use set(to create set as =... |
11,085 | sscasc@tumkur aprint( len()pythonit display the lower(method returns the given string in lower case aprint( lower()it display python python the upper(method returns the given string in upper case aprint( upper()it display python python the replace(method replaces given string with another string "forprint( replace(' ' ... |
11,086 | sscasc@tumkur greater than <less than or equal to >greater than or equal to !not equal to =equal to > false <= true >= false != true == false 'sscasct'bcatrue 'sscasct<='bcafalse 'sscasct'>='bcatrue 'sscasct'!'sscascttrue 'sscasc=='sscasctrue logical operators symbol or and not description if any one of the operand is ... |
11,087 | sscasc@tumkur the left operand bitwise operatora bit is the smallest unit of data storage and it can have only one of the two values and bitwise operators works on bits and perform bit-by-bit operation symbol <>description performs binary or operation performs binary and operation performs binary xor operation performs... |
11,088 | sscasc@tumkur creating python program input function the print function enables python program to display textual information to the user programs may use the input function to obtain information from the user the simplest use of the input function assigns string to variablex input(the parentheses are empty because the... |
11,089 | sscasc@tumkur the expression end=is known as keyword will cause the cursor to remain on the same line as the printed text without this keyword argumentthe cursor moves down to the next line after printing the text another way to achieve the same result is print(end='please enter an integer value'this statement means "p... |
11,090 | sscasc@tumkur frequently used specifiers specifier format " fformat the float item with width and precision " eformat the float item in scientific notation with width and precision " dformat the integer item in decimal with width " xformat the integer item in hexadecimal with width " oformat the integer item in octal w... |
11,091 | sscasc@tumkur program to illustrate format specifier print(format( " ")print(format( " ")print(format( " %")print(format( " ")print(format( "< "))#left justfy print(format( " "))#converts to hexadecimal print(format("welcome to python"" ")print(format("welcome to python""< ")print(format("welcome to python""> "))#right... |
11,092 | sscasc@tumkur divisor int(input('please enter dividend')if possibledivide them and report the result if divisor ! quotient dividend/divisor print(dividend'/'divisor"="quotientprint('program finished'output please enter the number to divide please enter dividend program finished if-else statements two-way if-else statem... |
11,093 | sscasc@tumkur if_elif_else statement in python we can define series of conditionals (multiple alternativesusing if for the first oneelif for the restup until the final (optionalelse for anything not caught by the other conditionals example:if_elif_else score=int(input("enter score")if score > grade 'aelif score > grade... |
11,094 | sscasc@tumkur sum count num=int(input("enter your number:")while num !- sum sum num count count num =int(input("enter your number:")print ("count is :"countprint ("sum is :"sumprint ("average is :"sum countthe for loop for loop iterates through each statements in sequence for exactly know many times the loop body needs... |
11,095 | sscasc@tumkur output of example we can iterate through list by using forexample for in ['one''two''three''four']print(xthis will print out the elements of the listone two three four iterating over dictionariesconsidering the following dictionaryd {" " " " " " #to iterate through its keyswe can usefor key in dprint(key)... |
11,096 | sscasc@tumkur break and continue in loops break statementwhen break statement executes inside loopcontrol flow comes out of the loop immediatelyexample:to demonstrate break while print(iif = print("breaking from loop"break + the loop conditional will not be evaluated after the break statement is executed note that brea... |
11,097 | sscasc@tumkur executing this loop now prints the pass the pass statement is used in code in places where the language requires statement to appear but we wish the program to take no action we can make the code fragment legal by adding pass statementif pass do nothing elseprint(xpass is null statementwhen statement is r... |
11,098 | sscasc@tumkur functions function is collection of statements grouped together that performs an operation function is way of packaging group of statements for later execution the function is given name the name then becomes short-hand to describe the process once definedthe user can use it by the nameand not by the step... |
11,099 | sscasc@tumkur value is referred to as an actual parameter or argument parameters are optionalthat isa function may not have any parameters statement(salso known as the function body are nonempty sequence of statements executed each time the function is called this means function body cannot be emptyjust like any indent... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.