Spotify is an application that is used to play music, podcasts, and songs using internet access.
<u>Explanation:</u>
Spotify is a very versatile and well-developed application that enables it to personalize the user experience. The user is provided to choose their favourite singers and composers. A user can select language preferences about the music they like.
The algorithms of Spotify work in a fashion so as to recommend more music from the user's preferences and previously played songs. Two users can have different preferences and subsequently, their Spotify will appear in a different manner from each other because of the personalization that has been provided to them through their preferences.
Is it a multiple choice answer? if so would like to see the answers as there are TONS of effective ways and if i list one it may not be in that list you have if its multiple choice.
The answer is most likely C
Matter is made up of extremely tiny particles called atoms and molecules. Atoms and molecules make up the three common states of matter on Earth—solids, liquids, and gases. The particles of a liquid are attracted to one another, are in motion, and are able to move past one another.
<em>-</em><em> </em><em>BRAINLIEST</em><em> answerer</em>
Answer:
Here you go :)
Explanation:
Change this however you'd like:
def calc(n1, op, n2):
if op.lower() == "x":
return n1*n2
elif op == "+":
return n1+n2
elif op == "-":
return n1-n2
elif op == "/":
return n1/n2
else:
return "error"
num1 = float(input("Input first number: "))
oper = input("Input operator: ")
num2 = float(input("Input second number: "))
print(calc(num1, oper, num2))