Computer Science, asked by kavyadixit8027, 7 months ago

Write a Python program to convert temperature in degree Celsius to degree Fahrenheit. If water boils
at 100 degree C and freezes as 0 degree C, use the program to find out what is the boiling point and
freezing point of water on the Fahrenheit scale.
(Hint: T(°F) = T(°C) × 9/5 + 32)

Answers

Answered by aadi7571
7

Answer:

Explanation:

I Hope You Understand :-)

Attachments:
Answered by avitaylor101
2

hi mate,

Answer :

Python program to print all odd numbers in a range

Given starting and end points, write a Python program to print all odd numbers in that given range.

Example:

Input: start = 4, end = 15

Output: 5, 7, 9, 11, 13, 15

Input: start = 3, end = 11

Output: 3, 5, 7, 9, 11

Define start and end limit of range. Iterate from start till the range in the list using for loop and check if num % 2 != 0. If the condition satisfies, then only print the number.

# Python program to print odd Numbers in given range

start, end = 4, 19

# iterating each number in list

for num in range(start, end + 1):

# checking condition

if num % 2 != 0:

print(num, end = " ")

Output:

5 7 9 11 13 15 17 19

Example #1: Print all odd numbers from given list using for loop

Example #2: Taking range limit from user input

# Python program to print Even Numbers in given range

start = int(input("Enter the start of range: "))

end = int(input("Enter the end of range: "))

# iterating each number in list

for num in range(start, end + 1):

# checking condition

if num % 2 != 0:

print(num, end = " ")

Output:

Enter the start of range: 3

Enter the end of range: 11

Enter the end of range: 11 3 5 7 9 11

Example #3: Taking range limit from user input

# Python program to print Even Numbers in given range

start = int(input("Enter the start of range: "))

end = int(input("Enter the end of range: "))

#create a list that contains only Even numbers in given range

even_list = range(start, end + 1)[start%2::2]

for num in even_list:

print(num, end = " ")

Output:

Enter the start of range: 3

Enter the end of range: 11

Enter the end of range: 11 3 5 7 9 11

i hope it helps you.

Similar questions