-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython
More file actions
29 lines (22 loc) · 642 Bytes
/
Copy pathpython
File metadata and controls
29 lines (22 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Python Program to find the area of triangle
a = 5
b = 6
c = 7
# Uncomment below to take inputs from the user
# a = float(input('Enter first side: '))
# b = float(input('Enter second side: '))
# c = float(input('Enter third side: '))
# calculate the semi-perimeter
s = (a + b + c) / 2
# calculate the area
area = (s * (s-a) * (s-b) * (s-c)) ** 0.5
print('The area of the triangle is %0.2f' % area)
# CodeLab-
# Registration Form
# Python language
Name = input("Enter Name:")
Email = input("Enter Email:")
Username = input("Enter Username:")
Password = input("Enter Password:")
print("Registration Successful!")
print("Welcome",Name)