Our Quizzes & Tutorials
Learn Python today with our getting started tutorial.
Our Quizzes help you to assess your skills and increase your confidence.
Our Articles on Data Science & Python
Python Basic Quiz #2 – About Python
By Asha PonrajOctober 24, 2021Python Basic Quiz #1 – About Python
By Asha PonrajOctober 24, 2021Strings
By Asha PonrajOctober 23, 2021Python Strings can be defined by either enclosed with single quotes ” or double quotes “”.
Examples:
A Tip A Day – Python Tip #12: Using zfill() for ‘0’ padding
By Asha PonrajOctober 17, 2021zfill() function:
zfill() function is type of padding function.
This function fills only with ‘0’. Takes the resultant width…Read more
A Tip A Day – Python Tip #11: Split string using partition, rpartition & splitlines
By Asha PonrajOctober 16, 2021There are various ways to split strings.
The popular split function we use often is split(), rsplit()
Apart from these 3…Read more
Format output
By Asha PonrajOctober 14, 2021User Input:
Input(message) function waits for an input from user.
Input function always takes in a string data type value from…Read more
Operators
By Asha PonrajOctober 14, 2021Mathematical Operators:
OperatorNameExampleExplanation+Additionx + yAdds if the x & y are numeric. Concatenates if any of the values…Read more
Naming conventions
By Asha PonrajOctober 14, 2021Variable names, function names, class-method names: Use lower case…Read more
Variables
By Asha PonrajOctober 14, 2021A Variables is a value holder which store a data and it can be used in the program.
In Python there is no…Read more
Data Types
By Asha PonrajOctober 14, 2021Each variable must be categorized into a type of value.
Based on the type, the variable will be used for the mathematical or logical…Read more