June 03, 2021Python ResourcesPython Study Guide for a JavaScript Programmer [](https://github.com/bgoonz)Applications of Tutorial & Cheat Sheet Respectivley (At Bottom Of Tutorial):BasicsPEP8 : Python Enhancement Proposals, style-guide for Python.print is the equivalent of console.log.'print() == console.log()'# is used to make comments in your code.Python has a built in help function that let's you see a description of the source code without having to navigate to it… "-SickNasty … Autor Unknown"NumbersPython has three types of numbers:IntegerPositive and Negative Counting Numbers.No Decimal PointCreated by a literal non-decimal point number … or … with the int() constructor.3. Complex NumbersConsist of a real part and imaginary part.Boolean is a subtype of integer in Python.🤷♂️If you came from a background in JavaScript and learned to accept the premise(s) of the following meme…Than I am sure you will find the means to suspend your disbelief.KEEP IN MIND:The i is switched to a j in programming.T*his is because the letter i is common place as the de facto index for any and all enumerable entities so it just makes sense not to compete for name-**space *when there's another 25 letters that don't get used for every loop under the sun. My most medium apologies to Leonhard Euler.Type Casting : The process of converting one number to another.The arithmetic operators are the same between JS and Python, with two additions:"**" : Double asterisk for exponent."//" : Integer Division.There are no spaces between math operations in Python.Integer Division gives the other part of the number from Module; it is a way to do round down numbers replacing Math.floor() in JS.There are no ++ and -- in Python, the only shorthand operators are:StringsPython uses both single and double quotes.You can escape strings like so 'Jodi asked, "What\'s up, Sam?"'Multiline strings use triple quotes.Use the len() function to get the length of a string.Python uses zero-based indexingPython allows negative indexing (thank god!)Python let's you use rangesYou can think of this as roughly equivalent to the slice method called on a JavaScript object or string… *(mind you that in JS … strings are wrapped in an object (under the hood)… upon which the string methods are actually called. As a immutable privative type by textbook definition, a string literal could not hope to invoke most of it's methods without violating the state it was bound to on initialization if it were not for this bit of syntactic sugar.)*The end range is exclusive just like slice in JS.The index string function is the equiv. of indexOf() in JSThe count function finds out how many times a substring appears in a string… pretty nifty for a hard coded feature of the language.You can use + to concatenate strings, just like in JS.You can also use "*" to repeat strings or multiply strings.Use the format() function to use placeholders in a string to input values later on.*Shorthand way to use format function is: *print(f'Your name is {firstname} {lastname}')Some useful string methods.Note that in JS join is used on an Array, in Python it is used on String.There are also many handy testing methods.Variables and ExpressionsDuck-Typing : Programming Style which avoids checking an object's type to figure out what it can do.Duck Typing is the fundamental approach of Python.Assignment of a value automatically declares a variable.You can chain variable assignments to give multiple var names the same value.Use with caution as this is highly unreadableThe value and type of a variable can be re-assigned at any time.*NaN does not exist in Python, but you can 'create' it like so: print(float("nan"))*Python replaces null with none.*none is an object and can be directly assigned to a variable.*Using none is a convenient way to check to see why an action may not be operating correctly in your program.Boolean Data TypeOne of the biggest benefits of Python is that it reads more like English than JS does.By default, Python considers an object to be true UNLESS it is one of the following:Constant None or FalseZero of any numeric type.Empty Sequence or Collection.True and False must be capitalizedComparison OperatorsPython uses all the same equality operators as JS.In Python, equality operators are processed from left to right.Logical operators are processed in this order:NOTANDORJust like in JS, you can use parentheses to change the inherent order of operations.Short Circuit : Stopping a program when a true or false has been reached.Identity vs EqualityIn the Python community it is better to use is and is not over == or !=If StatementsRemember the order of elif statements matter.While StatementsBreak statement also exists in Python.As are continue statementsTry/Except StatementsPython equivalent to try/catchYou can name an error to give the output more specificity.You can also use the pass commmand to by pass a certain error.The pass method won't allow you to bypass every single error so you can chain an exception series like so:You can use an else statement to end a chain of except statements.finally is used at the end to clean up all actions under any circumstance.Using duck typing to check to see if some value is able to use a certain method.PassPass Keyword is required to write the JS equivalent of :FunctionsFunction definition includes:The def keywordThe name of the functionA list of parameters enclosed in parentheses.A colon at the end of the line.One tab indentation for the code to run.You can use default parameters just like in JSKeep in mind, default parameters must always come after regular parameters.You can specify arguments by name without destructuring in Python.The lambda keyword is used to create anonymous functions and are supposed to be one-liners.toUpper = lambda s: s.upper()NotesFormatted StringsRemember that in Python join() is called on a string with an array/list passed in as the argument. Python has a very powerful formatting engine. format() is also applied directly to strings.Comma Thousands SeparatorDate and TimePercentageData TablesPython can be used to display html, css, and JS.It is common to use Python as an API (Application Programming Interface)Structured DataSequence : The most basic data structure in Python where the index determines the order.List Tuple Range Collections : Unordered data structures, hashable values.Dictionaries SetsIterable : Generic name for a sequence or collection; any object that can be iterated through.Can be mutable or immutable. Built In Data TypesLists are the python equivalent of arrays.You can instantiateTest if a value is in a list.Instantiated with parenthesesSometimes instantiated withoutTuple() built in can be used to convert other data into a tupleRanges : A list of numbers which can't be changed; often used with for loops.Declared using one to three parameters.Start : opt. default 0, first # in sequence. Stop : required next number past the last number in the sequence. Step : opt. default 1, difference between each number in the sequence.Dictionaries : Mappable collection where a hashable value is used as a key to ref. an object stored in the dictionary.Mutable.Declared with curly braces of the built in dict()Benefit of dictionaries in Python is that it doesn't matter how it is defined, if the keys and values are the same the dictionaries are considered equal.Use the in operator to see if a key exists in a dictionary.Sets : Unordered collection of distinct objects; objects that need to be hashable.Always be unique, duplicate items are auto dropped from the set.Common Uses:Removing Duplicates Membership Testing Mathematical Operators: Intersection, Union, Difference, Symmetric Difference.Standard Set is mutable, Python has a immutable version called frozenset. Sets created by putting comma seperated values inside braces:Also can use set constructor to automatically put it into a set.filter(function, iterable) : creates new iterable of the same type which includes each item for which the function returns true.map(function, iterable) : creates new iterable of the same type which includes the result of calling the function on every item of the iterable.sorted(iterable, key=None, reverse=False) : creates a new sorted list from the items in the iterable.Output is always a listkey: opt function which coverts and item to a value to be compared.reverse: optional boolean.enumerate(iterable, start=0) : starts with a sequence and converts it to a series of tuples(0, 'First'), (1, 'Second'), (2, 'Third'), (3, 'Fourth')(1, 'First'), (2, 'Second'), (3, 'Third'), (4, 'Fourth')zip(*iterables) : creates a zip object filled with tuples that combine 1 to 1 the items in each provided iterable. Functions that analyze iterablelen(iterable) : returns the count of the number of items.max(*args, key=None) : returns the largest of two or more arguments.max(iterable, key=None) : returns the largest item in the iterable.key optional function which converts an item to a value to be compared. min works the same way as maxsum(iterable) : used with a list of numbers to generate the total.There is a faster way to concatenate an array of strings into one string, so do not use sum for that.any(iterable) : returns True if any items in the iterable are true.all(iterable) : returns True is all items in the iterable are true.Working with dictionariesdir(dictionary) : returns the list of keys in the dictionary. Working with setsUnion : The pipe | operator or union(*sets) function can be used to produce a new set which is a combination of all elements in the provided set.Intersection : The & operator ca be used to produce a new set of only the elements that appear in all sets.Symmetric Difference : The ^ operator can be used to produce a new set of only the elements that appear in exactly one set and not in both.For Statements In python, there is only one for loop.Always Includes:1. The for keyword 2. A variable name 3. The 'in' keyword 4. An iterable of some kid 5. A colon 6. On the next line, an indented block of code called the for clause.You can use break and continue statements inside for loops as well.You can use the range function as the iterable for the for loop.Common technique is to use the len() on a pre-defined list with a for loop to iterate over the indices of the list.You can loop and destructure at the same time.Prints 1, 2Prints 3, 4Prints 5, 6You can use values() and keys() to loop over dictionaries.Prints redPrints 42Prints colorPrints ageFor loops can also iterate over both keys and values.Getting tuplesPrints ('color', 'red')Prints ('age', 42)Destructuring to valuesPrints Key: age Value: 42Prints Key: color Value: redLooping over stringWhen you order arguments within a function or function call, the args need to occur in a particular order:formal positional args.*argskeyword args with default values**kwargsImporting in PythonModules are similar to packages in Node.js Come in different types:Built-In,Third-Party,Custom.All loaded using import statements.Termsmodule : Python code in a separate file. package : Path to a directory that contains modules. init.py : Default file for a package. submodule : Another file in a module's folder. function : Function in a module.A module can be any file but it is usually created by placing a special file init.py into a folder. picTry to avoid importing with wildcards in Python.Use multiple lines for clarity when importing.Watching Out for Python 2Python 3 removed <> and only uses !=format() was introduced with P3All strings in P3 are unicode and encoded. md5 was removed.ConfigParser was renamed to configparser sets were killed in favor of set() class.print was a statement in P2, but is a function in P3.Topics revisited (in python syntax)Cheat Sheet:If you found this guide helpful feel free to checkout my github/gists where I host similar content:bgoonz's gists · GitHubOr Checkout my personal Resource Site:Python Cheat Sheet:If you found this guide helpful feel free to checkout my GitHub/gists where I host similar content: