Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

data types

#simple intrest in python
P=float(input('principle amount:'))
R=float(input('rate:'))
T=int(input('Time:'))
SI=(P*R*T)/100
print('simple intrest=',SI)
#output:
principle amount:
rate:
Time:
simple intrest=
_____________________________________________________________________________
 
PREVIOUS NEXT
Tagged: #data #types
ADD COMMENT
Topic
Name
3+8 =