Answer:
Im confused, what does this mean
Explanation:
i mean, thx lol
Answer:
# Program is written in python
# 22.1 Using the count method, find the number of occurrences of the character 's' in the string 'mississippi'.
# initializing string
Stringtocheck = "mississippi"
# using count() to get count of s
counter = Stringtocheck.count('s')
# printing result
print ("Count of s is : " + str(counter))
# 2.2 In the string 'mississippi', replace all occurrences of the substring 'iss' with 'ox
# Here, we'll make use of replace() method
# Prints the string by replacing iss by ox
print(Stringtocheck.replace("iss", "ox"))
#2.3 Find the index of the first occurrence of 'p' in 'mississippi'
# declare substring
substring = 'p'
# Find index
index = Stringtocheck.find(substring)
# Print index
print(index)
# End of program
Answer:
0.00650 Ib s /ft^2
Explanation:
diameter ( D ) = 0.71 inches = 0.0591 ft
velocity = 0.90 ft/s ( V )
fluid specific gravity = 0.96 (62.4 ) ( x )
change in pressure ( P ) = 0 because pressure was constant
viscosity = (change in p - X sin∅ ) / 32 V
= ( 0 - 0.96( 62.4) sin -90 ) * 0.0591 ^2 / 32 * 0.90
= - 59.904 sin (-90) * 0.0035 / 28.8
= 0.1874 / 28.8
viscosity = 0.00650 Ib s /ft^2
Answer:
thank you for the free point have a great rest of your day