Daily jobs Updates
3.34K subscribers
224 photos
2 videos
114 files
1.47K links
500+ Placement & Competitive Exam Materials
75+ Companies Materials
100+ JOB Updates in a Month

๐Ÿš€DM for Promotion @Wren_0
๐Ÿš€Placement Updates: @offcampusjobs_0
๐ŸŒŸ Placment Material: @placement_materials0
Download Telegram
Channel created
Channel photo updated
*1. Python3 program to add two numbers*

num1 = 15
num2 = 12

# Adding two nos

sum = num1 + num2

# printing values

print("Sum of {0} and {1} is {2}" .format(num1, num2, sum))


@python_0
2. program to find simple interest for given principal amount, time and rate of interest.

  

# We can change values here for
# different inputs

P = int(input())
R = int(input()) 
T = int(input())

# Calculates simple interest 

SI = (P * R * T) / 100

# Print the resultant value of SI 

print("simple interest is", SI)

@python_0