Python

User-Defined Functions in Python

User Defined Functions¶ Let us go through the details related to custom functions developed by users as part of the applications. Defining Functions Doc Strings Returning Values Function Parameters and Arguments Varying Arguments Keyword Arguments Recap of User Defined Functions Passing Functions as Arguments Lambda Functions Usage of Lambda Functions Exercise – User Defined Functions

Special Functions in Python

Special Functions¶ Python provides several special functions. These special functions are primarily used to convert data types, representing as strings, validating lists etc. All operators are typically nothing but functions. We have already seen operator which contain the functions. All the standard classes have special functions called as __str__ and __repr__ to provide string representation. …

Special Functions in Python Read More »

String Manipulation in Python

String Manipulation Functions¶ Let us go through some of the important string manipulation functions using Python as programming language.* Splitting Strings Converting Case Concatenating Strings Getting Sub String Data Type Conversion Let’s use below string to explore string manipulation functions. ‘1,123 456 789,Scott,Tiger,1989-08-15,+1 415 891 9002,Forrest City,Texas,75063’ The above string is delimited or separated by …

String Manipulation in Python Read More »