Conversion
Write a program that receives the peripheral temperature to Celsius and converts it to Fahrenheit and display it at the output.
Fahrenheit = (Celsius × 1.8) + 32
Write a program that receives the peripheral temperature to Celsius and converts it to Fahrenheit and display it at the output.
Fahrenheit = (Celsius × 1.8) + 32
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
let msg = 'error' alert(msg)This answer is only visible to premium members
This answer is only visible to premium members
da=int(input("da:")) far=((da*1.8)+32) print(far)
cs = int(input("enter Celsius: ")) fr = (cs * 1.8) + 32 print(fr)
celsius = float(input('Degree in Celsius value : '))
print('fahrenheit :',(celsius*1.8)+32)
selsiyos = int(input("enter your number:")) farenhayt = (1.8 * selsiyos) + 32 print(f"farenhayte:{farenhayt}")
degree = float(input("Please enter the ambient temperature in Celsius: ")) print("Degrees in Fahrenheit: ", (1.8 * degree) + 32,"F")
dama=float(input("enter dama:")) formul=dama*1.8 result=formul+32 print(result,"farenhot")
class Dama: def __init__(self,number): self.number=number def Solve(self): return (self.number*1.8)+32 number=float(input("enter dama:")) obj=Dama(number) print(obj.Solve(),"faranhat")
Submitting answers is currently unavailable.
Write a program that receives users' student names and number and stores in a file called Students.txt. Also, after each storage, display the entire information of this file at the output.
Write a program that receives 2 numeric value from the input and stores in variables A and B. Then move the values of these two variables (the value of variable A is to be stored within B and the value of variable B is saved within a)
Write a function that receives some and checks whether the amount received is the email. If the email was True, otherwise the False return the email should contain @ before @ should be a phrase as a work name ...
Write a program that receives text from the input and prints the translation in the output. It can also be able to get English text from the entrance and convert it to a coder. Input: hooshang ....--- .... ...
Define a class of User that has a username, email and password and the following methods. Print: Print username and email in the output IS_Gmail: Check whether the user's email is Gmail and ...
Write a function that receives a string and converts Persian numbers into English numbers
برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام If you don’t understand the exercise or can’t solve it for any reason, that’s completely
normal—don’t worry 😊
Try checking out easier exercises and reviewing different answers
submitted by others. Gradually, you can move on to more challenging exercises. Also, your answer
might be correct even if it’s different from others.