Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

print multiplication table of a number

son=int(input("input:"))
if son>=1 and son<=9:
  for d in range (1,11):
    print(son*d)
else:
  print("Wrong input")
Comment

PREVIOUS NEXT
Code Example
Python :: python draw polygon 
Python :: python change format of datetime 
Python :: python get filename without extension 
Python :: python define 2d table 
Python :: ModuleNotFoundError: No module named ‘click’ 
Python :: codeforces 677a solution 
Python :: import stopwords 
Python :: print all alphabets from a to z in python 
Python :: count unique values in pandas column 
Python :: pandas select data conditional 
Python :: how to parse dicts in reqparse in flask 
Python :: how to increase size of graph in jupyter 
Python :: plot confidence interval matplotlib 
Python :: python nmap 
Python :: show number as 3 digit python 
Python :: how to change a thread name in python 
Python :: openpyxl get last non empty row 
Python :: how to set datetime format in python 
Python :: creating virtual environment python 
Python :: python title case 
Python :: remove n from string python 
Python :: how to delete records in pandas before a certain date 
Python :: how to clear a pickle file 
Python :: dataframe change specicf values in column 
Python :: tkinter refresh window 
Python :: timestamp in python 
Python :: openpyxl add worksheet 
Python :: pandas plot histogram 
Python :: convert number to binary in python 
Python :: blender python save file 
ADD CONTENT
Topic
Content
Source link
Name
8+3 =