Answer:
The solution code is written in Python:
- def convertCSV(number_list):
- str_list = []
- for num in number_list:
- str_list.append(str(num))
-
- return ",".join(str_list)
- result = convertCSV([22,33,44])
- print(result)
Explanation:
Firstly, create a function "convertCSV" with one parameter "number_list". (Line 1)
Next, create an empty list and assign it to a new variable <em>str_list</em>. (Line 2)
Use for-loop to iterate through all the number in the <em>number_list</em>.(Line 4). Within the loop, each number is converted to a string using the Python built-in function <em>str() </em>and then use the list append method to add the string version of the number to <em>str_list</em>.
Use Python string<em> join() </em>method to join all the elements in the str_list as a single string. The "," is used as a separator between the elements (Line 7) . At the end return the string as an output.
We can test the function by calling the function and passing [22,33,34] as an argument and we shall see "22,33,44" is printed as an output. (Line 9 - 10)
Answer:
power developed by the turbine = 6927.415 kW
Explanation:
given data
pressure = 4 MPa
specific enthalpy h1 = 3015.4 kJ/kg
velocity v1 = 10 m/s
pressure = 0.07 MPa
specific enthalpy h2 = 2431.7 kJ/kg
velocity v2 = 90 m/s
mass flow rate = 11.95 kg/s
solution
we apply here thermodynamic equation that
energy equation that is
put here value with
turbine is insulated so q = 0
so here
solve we get
w = 579700 J/kg = 579.7 kJ/kg
and
W = mass flow rate × w
W = 11.95 × 579.7
W = 6927.415 kW
power developed by the turbine = 6927.415 kW
Answer:
Explanation:
Given
Required
Convert to standard form
From laws of indices
So, is equivalent to
Hence, the standard form of is
Answer:
a) 0.3
b) 3.6 mm
Explanation:
Given
Length of the pads, l = 200 mm = 0.2 m
Width of the pads, b = 150 mm = 0.15 m
Thickness of the pads, t = 12 mm = 0.012 m
Force on the rubber, P = 15 kN
Shear modulus on the rubber, G = 830 GPa
The average shear strain can be gotten by
τ(average) = (P/2) / bl
τ(average) = (15/2) / (0.15 * 0.2)
τ(average) = 7.5 / 0.03
τ(average) = 250 kPa
γ(average) = τ(average) / G
γ(average) = 250 kPa / 830 kPa
γ(average) = 0.3
horizontal displacement,
δ = γ(average) * t
δ = 0.3 * 12
δ = 3.6 mm