0
Hi people how can I program the following on python
Write a program that asks the user to enter an angle between -180 and 180°.using an expression with the modulo operator,convert the angle to its equivalent between 0° and 360° I tried angl=float(input("please enter the angle you want")) from random import randint X=randint(0,360) angl=x a=360+angle print(a) But I don't really understand the question too so of you can make it with detail and beginner friendly
2 Respostas
+ 3
For a more general answer; "%" is the modulo operator. Simply do:
angl = float(input())
print(angl % 360)
+ 2
Do you only need to convert angle between -180 and 180 to its equivalent between 0° and 360°?
if that's so just add 180 to the input