This should be put in the Spanish section <span />
Answer:
file_name = 'orders.txt'
file_obj = open( file_name, 'r' )
lines = file_obj.read()
print(lines.upper(), end = '')
Explanation:
- Define the name of the file
.
- Use the built-in open function to open the file in read mode
.
- Use the built-in read function to read the file and assign this to lines variable.
- Finally display the lines by converting them to capital alphabets by using the built-in upper() function.
It’s a total price divided to a number of riders involved. So costPerRider = costOfBusRental/maxBusRiders
The correct answer is A I believe.
Answer:
Tangible assets are physical like cash, inventory, vehicles, equipment, buildings and investments.
Explanation: