Answer:
hyperlinks
Explanation:
Javier should use hyperlinks to show the users the possible choices for their clothing. This is really a terrible question and not likely in any real world scenario. Fashion is always forward thinking and on the cutting edge. When was the last time you went to a fashion website and were left with only choices to click on a hyperlink? As Tim Gun would say "Make it work." If I were able I would include a hyperlink using the previous sentence as the clickable link with a URL reference to
https : //en.wikipedia.org/wiki/Tim_Gunn (spaces after https to make this link not get censored)
to illustrate the way to show that hyperlinks have no real application on modern fashion website. But they would have great utility here inside the answers section. But they also are cause for a securtity concern and may be killed by the moderators
Honestly, just google this please... but because I'm eating a cookie here you go...
<span>Deposit in your own account using your debit card:</span><span>Insert debit card and enter PIN for validation.Select account type (Saving or Current).<span>Place the money in the cash deposit slot and click “Continue”.</span><span>Machine will sort the cash and will show denomination-wise amount to be deposited.</span><span>If correct, click “Deposit”.
or this website
http://www.uandblog.com/How-To-Deposit-Money-In-A-Cash-Deposit-Machine
</span></span>
Answer:
# create the file
filename = "Testfile.txt"
# for writing, we create the output file:
outPutfile = open(filename, "w")
# Writing numbers from 1-100
for item in range(1,101):
outPutfile.write((str)(item))
outPutfile.close()
# printing the contents to verify it worked correctly
infile = open(filename, "r") #note the "r" indicates the mode
fileContents = infile.read()
infile.close()
print(fileContents)
Explanation:
- Define the working file fileName = TestFile
- Create the output file for writting outPutfile = open(filename, "w")
- Use a for loop to write numbers from 1-100 to the file outPutfile.write((str)(item))
- Close the file outPutfile.close()
- You may open the file read its content and print the contents to verify it worked correctly
The answer to this is OR..I think..Hope i helped