This tutorial will show how to create a multiplication table using the programming language Python. The multiplication table will consist of two Python components input() and for loops .
input() will be used to get the user input and the for loop will loop through the range of multiples ( i.e 5 x 1, 5 x 2 , … 5 x 12 )
Here is a deeper explanation of input() and for loops .
# Multiplication table
# Get input from the user
num = int(input("Get multiple of :"))
# Iterate 12 times
for i in range(1, 13):
print(num, 'x', i, '=', num*i)
Output
Get multiple of : 7
7 x 1 = 7
7 x 2 = 14
7 x 3 = 21
7 x 4 = 28
7 x 5 = 35
7 x 6 = 42
7 x 7 = 49
7 x 8 = 56
7 x 9 = 63
7 x 10 = 70
7 x 11 = 77
7 x 12 = 84
- Android Studio Loading Animation Between Activities
- Android Studio Tutorial SeekBar
- Python Ethereum Block Chain Interaction with Web3
- Python chr()
- Python callable()
Android Studio Loading Animation Between Activities
Progress Dialog is dialog showing a progress indicator and an optional text message or view. The methods of Progress Dialog being used in this tutorial are: ProgressDialog.setTitle() – Used to set title of dialog box ProgressDialog.setMessage() – Used to set dialog message being displayed ProgressDialog.setProgressStyle() – Choose the style of indicator ProgressDialog.dismiss() – Dismiss the…
Android Studio Tutorial SeekBar
SeekBar is an extension of ProgressBar that adds a draggable thumb. The user can touch thumb and drag left or right to set the current progress level or various other task. In this example, the seekbar will be used to display a percentage. As the user moves the SeekBar left to right the percentage value…
Python Ethereum Block Chain Interaction with Web3
This tutorial will show how to interact with the Ethereum blockchain using Python. To start, the Python library Web3 will need to be installed. The Web3 library allows you to interact with a local or remote Ethereum node, using a HTTP or IPC connection. Using Web3 you will be able to create smart contracts on…