Answer:
for numD in [1, 5]:
for numC in [2, 6, 3]:
print(numC, numD)
Answer:
first: tuple
second: list
third: dictionary
Explanation:
first: tuple
tuples are immutable, so you can't add or remove items from a tuple
second: list
lists are mutable, so you can add and remove items from a list
third: dictionary
dictionaries are mutable, so you can add and remove items from a dictionary
Answer:
using while loop
num = 0
while num < 5:
print(num)
num += 2
or you can use for loop and range
for num in range(0, 5, 2):
print(num)
both will produce the output
0
2
4
Answer:
for num in range(0, 3):
print(num)
or
for num in range(3):
print(num)
both will produce the output
0
1
2
Answer:
ML predicts patterns based on previous experiences
Explanation:
The thought process is that the more information available to the machine gives it the ability to create a model based on historical, labelled data, to predict the value of something unknown or of unknown quantity but still based on new data.
example of this is predictive text.
Answer:
def subtract(numA, numB):
return numA - numB
Answer:
dues = total - down_payment
Explanation:
Answer:
You will not be charged again. The refund will be processed in 3-5 business days. and the coins will be removed from your account.
Answer:
Computer Programs
Explanation:
Computer Programs , in some program language Actualy best program languages is javascript(using in big firms) , C# C Sharp , Python , C++ C Plus Plus in some provincions and technology , program you can doo in best Compilator is Visual Studio "Community" for free 2015 , 2019 , 2022 like I Remember this versions in this Compiler you can doo programs in C# , F# , C++ , class/es , biblioteks and plicks dll. , Console Aplications , Graphic Aplications all i Plicks .exe or other biblioteks , class or types but you mast doo Decision for programing language and start learning for many time for many years... too BIG SPECIALISATIONS
Answer:
=IFERROR(IF(score<=100,"A",IF(score<=90,"B",IF(score<=80,"C",IF(score<=70,"D",IF(score<=60,"F","Invalid"))))),"Invalid")
Answer:
INCHES_TO_CM = 2.54
CM_TO_METERS = 0.01
FEET_TO_INCHES = 12
def convert_height_to_meter(feet, inches):
inches_total = (feet * FEET_TO_INCHES) + inches
cm_total = inches_total * INCHES_TO_CM
meters = cm_total * CM_TO_METERS
print(str(feet)+" feet, "+str(inches)+" inches is "+str(meters)+" meters")
convert_height_to_meter(6, 4)
convert_height_to_meter(5, 8)
convert_height_to_meter(5, 2)