Find latitude and longitude of first 20 countries with a population greater than or equal to the population limit given below. Use the country details from this dataset.
Your task is to find the sum of the length of all lines (in kms) that can be drawn between co-ordinates of these countries.
Assume radius of earth: 6371 km
Round length of each line and final result to 2 decimal points
If co-ordinates are missing for any country use 0.000 N 0.000 E
Population limit: 2072
Find latitude and longitude of first 20 countries with a population greater than or equal to the population limit given below. Use the country details from this dataset.
Your task is to find the sum of the length of all lines (in kms) that can be drawn between co-ordinates of these countries.
Population limit: 277500
Note: Population limit will change at random intervals. So please make sure answer is computed for the correct population limit before submitting.
Write a program to classify athletes into three classes by weight. The categories are: over 80kg → heavy weight, between 60 and 80 kg → medium weight, less than 60kg → light weight.
Write a function called print volume (r) that takes an argument for the radius of the sphere, and prints the volume of the sphere.
Enter a name: frienzy
hello, frienzy .
X= 2 ; y= 5
x = x + y
print(x)
OUTPUT:
10
A group of students were monitoring the temperature daily basis over a one-year period to calculate the daily average temperature and the average temperature for the whole year (you may assume a year contain 365 days). Ten readings were taken each day.
i. Write an algorithm for the above task.
ii. Convert the above algorithm (written in part (i)) to a Python program to output the daily average temperature and the average temperature for the whole year.
Write a function in this file called nine_lines that uses the function three_lines (provided below) to print a total of nine line
Print right half Diamond pattern using for loop in python