id int64 0 25.6k | text stringlengths 0 4.59k |
|---|---|
10,900 | venture of iit bombay vjti alumni this produce the following result ['abcd' 'john' abcd [ [ 'john' [ 'john' 'john'['abcd' 'john' 'john'python tuples tuple is another sequence data type that is similar to the list tuple consists of number of values separated by commas unlike listshowevertuples are enclosed within parent... |
10,901 | venture of iit bombay vjti alumni tinytuple ( 'john'print tuple prints complete list print tuple[ prints first element of the list print tuple[ : prints elements starting from nd till rd print tuple[ :prints elements starting from rd element print tinytuple prints list two times print tuple tinytuple prints concatenate... |
10,902 | venture of iit bombay vjti alumni the following code is invalid with tuplebecause we attempted to update tuplewhich is not allowed similar case is possible with lists #!/usr/bin/python tuple 'abcd' 'john' list 'abcd' 'john' tuple[ invalid syntax with tuple list[ valid syntax with list python dictionary python' dictiona... |
10,903 | venture of iit bombay vjti alumni dict['one'"this is onedict[ "this is twotinydict {'name''john','code': 'dept''sales'print dict['one'prints value for 'onekey print dict[ prints value for key print tinydict prints complete dictionary print tinydict keys(prints all the keys print tinydict values(prints all the values th... |
10,904 | venture of iit bombay vjti alumni data type conversion sometimesyou may need to perform conversions between the built-in types to convert between typesyou simply use the type name as function there are several built-in functions to perform conversion from one data type to another these functions return new object repre... |
10,905 | venture of iit bombay vjti alumni creates complex number str(xconverts object to string representation repr(xconverts object to an expression string eval(strevaluates string and returns an object tuple(sconverts to tuple list(sconverts to list set( |
10,906 | venture of iit bombay vjti alumni converts to set dict(dcreates dictionary must be sequence of (key,valuetuples frozenset(sconverts to frozen set chr(xconverts an integer to character unichr(xconverts an integer to unicode character ord(xconverts single character to its integer value |
10,907 | venture of iit bombay vjti alumni hex(xconverts an integer to hexadecimal string oct(xconverts an integer to an octal string |
10,908 | venture of iit bombay vjti alumni python basic operators operators are the constructs which can manipulate the value of operands consider the expression here and are called operands and is called operator types of operator python language supports the following types of operators arithmetic operators comparison (relati... |
10,909 | venture of iit bombay vjti alumni python arithmetic operators assume variable holds and variable holds then show example operator description example addition adds values on either side of the operator subtraction subtracts right hand operand from left hand operand multiplies values on either side of the operator multi... |
10,910 | venture of iit bombay vjti alumni operand modulus *exponent divides left hand operand by right hand operand and returns remainder performs exponential (powercalculation on ** operators = to the power /floor division the division of operands where // the result is the quotient in which the digits and after the decimal p... |
10,911 | venture of iit bombay vjti alumni these operators compare the values on either sides of them and decide the relation among them they are also called relational operators assume variable holds and variable holds then show example operator description example =if the values of two operands are equalthen the ( =bcondition... |
10,912 | venture of iit bombay vjti alumni operator ><if the value of left operand is greater than the ( bvalue of right operandthen condition becomes is true true if the value of left operand is less than the value of ( bright operandthen condition becomes true is true if the value of left operand is greater than or equal ( >b... |
10,913 | venture of iit bombay vjti alumni assume variable holds and variable holds then show example operator description example assigns values from right side operands to left side operand assigns value of into +add and it adds right operand to the left operand and + is assign the result to left operand equivalent to -it sub... |
10,914 | venture of iit bombay vjti alumni *it multiplies right operand with the left operand * is multiply and assign the result to left operand equivalent and to /divide it divides left operand with the right operand / is and and assign the result to left operand equivalent to ac / is equivalent to %it takes modulus using two... |
10,915 | venture of iit bombay vjti alumni exponent operators and assign value to the left operand and equivalent to * //floor it performs floor division on operators and // is division assign value to the left operand equivalent to / python bitwise operators bitwise operator works on bits and performs bit by bit operation assu... |
10,916 | venture of iit bombay vjti alumni ^ ~ there are following bitwise operators supported by python language operator description example operator copies bit to the result if it exists ( in both operands (means binary and binary or it copies bit if it exists in either operand ( (means binary xor it copies the bit if it is ... |
10,917 | venture of iit bombay vjti alumni ones bits (means complement in ' complement form due to signed binary number <binary left shift >binary right shift the left operands value is moved left by the < number (means of bits specified by the right operand the left operands value is moved right by > the number of bits specifi... |
10,918 | venture of iit bombay vjti alumni used to reverse the logical state of its operand python membership operators python' membership operators test for membership in sequencesuch as stringslistsor tuples there are two membership operators as explained below operator description example in evaluates to true if it finds var... |
10,919 | venture of iit bombay vjti alumni the specified sequence and false otherwise not in results in if is not member of sequence python identity operators identity operators compare the memory locations of two objects there are two identity operators explained below operator description is evaluates to true if the variables... |
10,920 | venture of iit bombay vjti alumni equals id(yis not evaluates to false if the variables on either side of is not ythe operator point to the same object and true here is otherwise not results in if id(xis not equal to id(ypython operators precedence the following table lists all operators from highest precedence to lowe... |
10,921 | venture of iit bombay vjti alumni complementunary plus and minus (method names for the last two are +and -@ /multiplydividemodulo and floor division +addition and subtraction ><right and left bitwise shift bitwise 'and ^bitwise exclusive `orand regular `or |
10,922 | venture of iit bombay vjti alumni >comparison operators =!equality operators %///-+***assignment operators is is not identity operators in not in membership operators not or and logical operators |
10,923 | venture of iit bombay vjti alumni python decision making decision making is anticipation of conditions occurring while execution of the program and specifying actions taken according to the conditions decision structures evaluate multiple expressions which produce true or false as outcome you need to determine which ac... |
10,924 | venture of iit bombay vjti alumni python programming language assumes any non-zero and non-null values as trueand if it is either zero or nullthen it is assumed as false value python programming language provides following types of decision making statements click the following links to check their detail sr no stateme... |
10,925 | venture of iit bombay vjti alumni another if or else ifstatement(slet us go through each decision making briefly single statement suites if the suite of an if clause consists only of single lineit may go on the same line as the header statement here is an example of one-line if clause #!/usr/bin/python var if var = pri... |
10,926 | venture of iit bombay vjti alumni python loops in generalstatements are executed sequentiallythe first statement in function is executed firstfollowed by the secondand so on there may be situation when you need to execute block of code several number of times programming languages provide various control structures tha... |
10,927 | venture of iit bombay vjti alumni python programming language provides following types of loops to handle looping requirements sr no loop type description while loop repeats statement or group of statements while given condition is true it tests the condition before executing the loop body for loop executes sequence of... |
10,928 | venture of iit bombay vjti alumni loop control statements loop control statements change execution from its normal sequence when execution leaves scopeall automatic objects that were created in that scope are destroyed python supports the following control statements click the following links to check their detail sr n... |
10,929 | venture of iit bombay vjti alumni the pass statement in python is used when statement is required syntactically but you do not want any command or code to execute |
10,930 | venture of iit bombay vjti alumni python numbers number data types store numeric values they are immutable data typesmeans that changing the value of number data type results in newly allocated object number objects are created when you assign value to them for example var var you can also delete the reference to numbe... |
10,931 | venture of iit bombay vjti alumni long (long integers also called longsthey are integers of unlimited sizewritten like integers and followed by an uppercase or lowercase float (floating point real valuesalso called floatsthey represent real numbers and are written with decimal point dividing the integer and fractional ... |
10,932 | venture of iit bombay vjti alumni - - - xdefabcecbdaecbfbael + - - + - - - + - - - python allows you to use lowercase with longbut it is recommended that you use only an uppercase to avoid confusion with the number python displays long integers with an uppercase complex number consists of an ordered pair of real floati... |
10,933 | venture of iit bombay vjti alumni number type conversion python converts numbers internally in an expression containing mixed types to common type for evaluation but sometimesyou need to coerce number explicitly from one type to another to satisfy the requirements of an operator or function parameter type int(xto conve... |
10,934 | venture of iit bombay vjti alumni the absolute value of xthe (positivedistance between and zero ceil(xthe ceiling of xthe smallest integer not less than cmp(xy- if exp(xthe exponential of xex fabs(xthe absolute value of floor(xthe floor of xthe largest integer not greater than |
10,935 | venture of iit bombay vjti alumni log(xthe natural logarithm of xfor log (xthe base- logarithm of for max( the largest of its argumentsthe value closest to positive infinity min( the smallest of its argumentsthe value closest to negative infinity modf(xthe fractional and integer parts of in two-item tuple both parts ha... |
10,936 | venture of iit bombay vjti alumni the value of ** round( [, ] rounded to digits from the decimal point python rounds away from zero as tie-breakerround( is and round(- is - sqrt(xthe square root of for random number functions random numbers are used for gamessimulationstestingsecurityand privacy applications python inc... |
10,937 | venture of iit bombay vjti alumni randrange ([start,stop [,step] randomly selected element from range(startstopstep random( random float rsuch that is less than or equal to and is less than seed([ ]sets the integer starting value used in generating random numbers call this function before calling any other random modul... |
10,938 | venture of iit bombay vjti alumni trigonometric functions python includes following functions that perform trigonometric calculations sr no function description acos(xreturn the arc cosine of xin radians asin(xreturn the arc sine of xin radians atan(xreturn the arc tangent of xin radians atan (yxreturn atan( )in radian... |
10,939 | venture of iit bombay vjti alumni cos(xreturn the cosine of radians hypot(xyreturn the euclidean normsqrt( * * sin(xreturn the sine of radians tan(xreturn the tangent of radians degrees(xconverts angle from radians to degrees radians(xconverts angle from degrees to radians |
10,940 | venture of iit bombay vjti alumni mathematical constants the module also defines two mathematical constants sr no constants description pi the mathematical constant pi the mathematical constant |
10,941 | venture of iit bombay vjti alumni python strings strings are amongst the most popular types in python we can create them simply by enclosing characters in quotes python treats single quotes the same as double quotes creating strings is as simple as assigning value to variable for example var 'hello world!var "python pr... |
10,942 | venture of iit bombay vjti alumni print "var [ ]"var [ print "var [ : ]"var [ : when the above code is executedit produces the following result var [ ] var [ : ]ytho updating strings you can "updatean existing string by (re)assigning variable to another string the new value can be related to its previous value or to co... |
10,943 | venture of iit bombay vjti alumni escape characters following table is list of escape or non-printable characters that can be represented with backslash notation an escape character gets interpretedin single quoted as well as double quoted strings backslash hexadecimal description notation character \ bell or alert \ b... |
10,944 | venture of iit bombay vjti alumni \ escape \ formfeed \ -\ - \ meta-control- \nnn newline octal notationwhere is in the range \ carriage return \ space \ tab |
10,945 | venture of iit bombay vjti alumni \ vertical tab \ character \xnn hexadecimal notationwhere is in the range for string special operators assume string variable holds 'helloand variable holds 'python'then operator description example concatenation adds values on either side of will the operator give hellopython repetiti... |
10,946 | venture of iit bombay vjti alumni [multiple copies of the same string hellohello slice gives the character from the given index [ will give [:in not in / range slice gives the characters from the [ : will given range give ell membership returns true if character exists in will in the given string give membership return... |
10,947 | venture of iit bombay vjti alumni " ,which precedes the quotation marks the " \ can be lowercase (ror uppercase (rand must be placed immediately preceding the first quote mark format performs string formatting see at next section string formatting operator one of python' coolest features is the string format operator t... |
10,948 | venture of iit bombay vjti alumni here is the list of complete set of symbols which can be used along with format conversion symbol % character % string conversion via str(prior to formatting % signed decimal integer % signed decimal integer % unsigned decimal integer |
10,949 | venture of iit bombay vjti alumni % octal integer % hexadecimal integer (lowercase letters% hexadecimal integer (uppercase letters% exponential notation (with lowercase ' '% exponential notation (with uppercase ' '% floating point real number % the shorter of % and % % the shorter of % and % other supported symbols and... |
10,950 | venture of iit bombay vjti alumni symbol functionality argument specifies width or precision left justification display the sign leave blank space before positive number add the octal leading zero ' or hexadecimal leading ' xor ' 'depending on whether 'xor 'xwere used pad from left with zeros (instead of spaces'%%leave... |
10,951 | venture of iit bombay vjti alumni (varmapping variable (dictionary argumentsm is the minimum total width and is the number of digits to display after the decimal point (if appl triple quotes python' triple quotes comes to the rescue by allowing strings to span multiple linesincluding verbatim newlinestabsand any other ... |
10,952 | venture of iit bombay vjti alumni this within the brackets \ ]or just newline within the variable assignment will also show up ""print para_str when the above code is executedit produces the following result note how every single special character has been converted to its printed formright down to the last newline at ... |
10,953 | venture of iit bombay vjti alumni #!/usr/bin/python print ' :\\nowherewhen the above code is executedit produces the following result :\nowhere now let' make use of raw string we would put expression in 'expression'as follows #!/usr/bin/python print ' :\\nowherewhen the above code is executedit produces the following r... |
10,954 | venture of iit bombay vjti alumni #!/usr/bin/python print 'helloworld!when the above code is executedit produces the following result helloworldas you can seeunicode strings use the prefix ujust as raw strings use the prefix built-in string methods python includes the following built-in methods to manipulate strings sr... |
10,955 | venture of iit bombay vjti alumni to total of width columns count(strbeg ,end=len(string)counts how many times str occurs in string or in substring of string if starting index beg and ending index end are given decode(encoding='utf- ',errors='strict'decodes the string using the codec registered for encoding encoding de... |
10,956 | venture of iit bombay vjti alumni so and false otherwise expandtabs(tabsize= expands tabs in string to multiple spacesdefaults to spaces per tab if tabsize not provided find(strbeg= end=len(string)determine if str occurs in string or in substring of string if starting index beg and ending index end are given returns in... |
10,957 | venture of iit bombay vjti alumni isalpha(returns true if string has at least character and all characters are alphabetic and false otherwise isdigit(returns true if string contains only digits and false otherwise islower(returns true if string has at least cased character and all cased characters are in lowercase and ... |
10,958 | venture of iit bombay vjti alumni istitle(returns true if string is properly "titlecasedand false otherwise isupper(returns true if string has at least one cased character and all cased characters are in uppercase and false otherwise join(seqmerges (concatenatesthe string representations of elements in sequence seq int... |
10,959 | venture of iit bombay vjti alumni lower(converts all uppercase letters in string to lowercase lstrip(removes all leading whitespace in string maketrans(returns translation table to be used in translate function max(strreturns the max alphabetical character from the string str min(strreturns the min alphabetical charact... |
10,960 | venture of iit bombay vjti alumni occurrences if max given rfind(strbeg= ,end=len(string)same as find()but search backwards in string rindexstrbeg= end=len(string)same as index()but search backwards in string rjust(width,[fillchar]returns space-padded string with the original string rightjustified to total of width col... |
10,961 | venture of iit bombay vjti alumni if given splitlinesnum=string count('\ ')splits string at all (or numnewlines and returns list of each line with newlines removed startswith(strbeg= ,end=len(string)determines if string or substring of string (if starting index beg and ending index end are givenstarts with substring st... |
10,962 | venture of iit bombay vjti alumni returns "titlecasedversion of stringthat isall words begin with uppercase and the rest are lowercase translate(tabledeletechars=""translates string according to translation table str( chars)removing those in the del string upper(converts lowercase letters in string to uppercase zfill (... |
10,963 | venture of iit bombay vjti alumni python lists the most basic data structure in python is the sequence each element of sequence is assigned number its position or index the first index is zerothe second index is oneand so forth python has six built-in types of sequencesbut the most common ones are lists and tupleswhich... |
10,964 | venture of iit bombay vjti alumni additionpython has built-in functions for finding the length of sequence and for finding its largest and smallest elements python lists the list is most versatile data type available in python which can be written as list of comma-separated values (itemsbetween square brackets importan... |
10,965 | venture of iit bombay vjti alumni list [ ]print "list [ ]"list [ print "list [ : ]"list [ : when the above code is executedit produces the following result list [ ]physics list [ : ][ updating lists you can update single or multiple elements of lists by giving the slice on the lefthand side of the assignment operatoran... |
10,966 | venture of iit bombay vjti alumni list[ print "new value available at index print list[ note append(method is discussed in subsequent section when the above code is executedit produces the following result value available at index new value available at index delete list elements to remove list elementyou can use eithe... |
10,967 | venture of iit bombay vjti alumni print list del list [ ]print "after deleting value at index print list when the above code is executedit produces following result ['physics''chemistry' after deleting value at index ['physics''chemistry' note remove(method is discussed in subsequent section basic list operations lists... |
10,968 | venture of iit bombay vjti alumni len([ ] length [ [ [ concatenation ['hi!' ['hi!''hi!''hi!''hi!'repetition in [ true membership for in [ ]print iteration indexingslicingand matrixes because lists are sequencesindexing and slicing work the same way for lists as they do for strings assuming following input ['spam''spam'... |
10,969 | venture of iit bombay vjti alumni python expression results description [ 'spam!offsets start at zero [- 'spamnegativecount from the right [ :['spam''spam!'slicing fetches sections built-in list functions methods python includes the following list functions sr no function with description cmp(list list |
10,970 | venture of iit bombay vjti alumni compares elements of both lists len(listgives the total length of the list max(listreturns item from the list with max value min(listreturns item from the list with min value list(seqconverts tuple into list python includes following list methods sr no methods with description |
10,971 | venture of iit bombay vjti alumni list append(objappends object obj to list list count(objreturns count of how many times obj occurs in list list extend(seqappends the contents of seq to list list index(objreturns the lowest index in list that obj appears list insert(indexobjinserts object obj into list at offset index... |
10,972 | venture of iit bombay vjti alumni list remove(objremoves object obj from list list reverse(reverses objects of list in place list sort([func]sorts objects of listuse compare func if given python tuples tuple is sequence of immutable python objects tuples are sequencesjust like lists the differences between tuples and l... |
10,973 | venture of iit bombay vjti alumni creating tuple is as simple as putting different comma-separated values optionally you can put these comma-separated values between parentheses also for example tup ('physics''chemistry' )tup ( )tup " "" "" "" "the empty tuple is written as two parentheses containing nothing tup ()to w... |
10,974 | venture of iit bombay vjti alumni #!/usr/bin/python tup ('physics''chemistry' )tup ( )print "tup [ ]"tup [ print "tup [ : ]"tup [ : when the above code is executedit produces the following result tup [ ]physics tup [ : ][ updating tuples tuples are immutable which means you cannot update or change the values of tuple e... |
10,975 | venture of iit bombay vjti alumni tup ( )tup ('abc''xyz')following action is not valid for tuples tup [ so let' create new tuple as follows tup tup tup print tup when the above code is executedit produces the following result ( 'abc''xyz'delete tuple elements removing individual tuple elements is not possible there iso... |
10,976 | venture of iit bombay vjti alumni tup ('physics''chemistry' )print tup del tupprint "after deleting tup print tup this produces the following result note an exception raisedthis is because after del tup tuple does not exist any more ('physics''chemistry' after deleting tup traceback (most recent call last)file "test py... |
10,977 | venture of iit bombay vjti alumni tuples respond to the and operators much like stringsthey mean concatenation and repetition here tooexcept that the result is new tuplenot string in facttuples respond to all of the general sequence operations we used on strings in the prior python expression results description len(( ... |
10,978 | venture of iit bombay vjti alumni indexingslicingand matrixes because tuples are sequencesindexing and slicing work the same way for tuples as they do for strings assuming following input ('spam''spam''spam!'python results description [ 'spam!offsets start at zero [- 'spamnegativecount from the expression right [ :no e... |
10,979 | venture of iit bombay vjti alumni any set of multiple objectscomma-separatedwritten without identifying symbolsi brackets for listsparentheses for tuplesetc default to tuplesas indicated in these short examples #!/usr/bin/python print 'abc'- + 'xyzxy print "value of " , when the above code is executedit produces the fo... |
10,980 | venture of iit bombay vjti alumni compares elements of both tuples len(tuplegives the total length of the tuple max(tuplereturns item from the tuple with max value min(tuplereturns item from the tuple with min value tuple(seqconverts list into tuple python dictionary each key is separated from its value by colon (:)the... |
10,981 | venture of iit bombay vjti alumni keys are unique within dictionary while values may not be the values of dictionary can be of any typebut the keys must be of an immutable data type such as stringsnumbersor tuples accessing values in dictionary to access dictionary elementsyou can use the familiar square brackets along... |
10,982 | venture of iit bombay vjti alumni dict {'name''zara''age' 'class''first'print "dict['alice']"dict['alice'when the above code is executedit produces the following result dict['alice']traceback (most recent call last)file "test py"line in print "dict['alice']"dict['alice']keyerror'aliceupdating dictionary you can update ... |
10,983 | venture of iit bombay vjti alumni print "dict['age']"dict['age'print "dict['school']"dict['school'when the above code is executedit produces the following result dict['age'] dict['school']dps school delete dictionary elements you can either remove individual dictionary elements or clear the entire contents of dictionar... |
10,984 | venture of iit bombay vjti alumni del dict delete entire dictionary print "dict['age']"dict['age'print "dict['school']"dict['school'this produces the following result note that an exception is raised because after del dict dictionary does not exist any more dict['age']traceback (most recent call last)file "test py"line... |
10,985 | venture of iit bombay vjti alumni (amore than one entry per key not allowed which means no duplicate key is allowed when duplicate keys encountered during assignmentthe last assignment wins for example #!/usr/bin/python dict {'name''zara''age' 'name''manni'print "dict['name']"dict['name'when the above code is executedi... |
10,986 | venture of iit bombay vjti alumni print "dict['name']"dict['name'when the above code is executedit produces the following result traceback (most recent call last)file "test py"line in dict {['name']'zara''age' }typeerrorlist objects are unhashable built-in dictionary functions methods python includes the following dict... |
10,987 | venture of iit bombay vjti alumni str(dictproduces printable string representation of dictionary type(variablereturns the type of the passed variable if passed variable is dictionarythen it would return dictionary type python includes following dictionary methods sr no methods with description dict clear(removes all el... |
10,988 | venture of iit bombay vjti alumni create new dictionary with keys from seq and values set to value dict get(keydefault=nonefor key keyreturns value or default if key not in dictionary dict has_key(keyreturns true if key in dictionary dictfalse otherwise dict items(returns list of dict' (keyvaluetuple pairs dict keys(re... |
10,989 | venture of iit bombay vjti alumni dict update(dict adds dictionary dict ' key-values pairs to dict dict values(returns list of dictionary dict' values |
10,990 | venture of iit bombay vjti alumni python date time python program can handle date and time in several ways converting between date formats is common chore for computers python' time and calendar modules help track dates and times what is ticktime intervals are floating-point numbers in units of seconds particular insta... |
10,991 | venture of iit bombay vjti alumni print "number of ticks since : amjanuary :"ticks this would produce result something as follows number of ticks since : amjanuary date arithmetic is easy to do with ticks howeverdates before the epoch cannot be represented in this form dates in the far future also cannot be represented... |
10,992 | venture of iit bombay vjti alumni hour to minute to second to ( or are leapseconds day of week to ( is monday day of year to (julian day daylight savings - - means library determines dst the above tuple is equivalent to struct_time structure this structure has following attributes |
10,993 | venture of iit bombay vjti alumni index attributes values tm_year tm_mon to tm_mday to tm_hour to tm_min to tm_sec to ( or are leapseconds tm_wday to ( is monday |
10,994 | venture of iit bombay vjti alumni tm_yday to (julian day tm_isdst - - means library determines dst getting current time to translate time instant from seconds since the epoch floating-point value into time-tuplepass the floating-point value to function ( localtimethat returns time-tuple with all nine items valid #!/usr... |
10,995 | venture of iit bombay vjti alumni tm_mday= tm_hour= tm_min= tm_sec= tm_wday= tm_yday= tm_isdst= getting formatted time you can format any time as per your requirementbut simple method to get time in readable format is asctime(#!/usr/bin/python import timelocaltime time asctimetime localtime(time time()print "local curr... |
10,996 | venture of iit bombay vjti alumni #!/usr/bin/python import calendar cal calendar month( print "here is the calendar:print cal this would produce the following result here is the calendarjanuary mo tu we th fr sa su |
10,997 | venture of iit bombay vjti alumni the time module there is popular time module available in python which provides functions for working with times and for converting between representations here is the list of all available methods sr no function with description time altzone the offset of the local dst timezonein seco... |
10,998 | venture of iit bombay vjti alumni approachesthe value of time clock is more useful than that of time time( time ctime([secs]like asctime(localtime(secs)and without arguments is like asctime time gmtime([secs]accepts an instant expressed in seconds since the epoch and returns time-tuple with the utc time note tm_isdst i... |
10,999 | venture of iit bombay vjti alumni returns floating-point value with the instant expressed in seconds since the epoch time sleep(secssuspends the calling thread for secs seconds time strftime(fmt[,tupletime]accepts an instant expressed as time-tuple in local time and returns string representing the instant as specified ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.