Answer:
<h3>System software is meant to manage the system resources. It serves as the platform to run application software. Application software helps perform a specific set of functions for which they have been designed. Application software is developed in a high-level language such as Java, C++, .</h3>
Explanation:
Hope it helps ^-^
<em>#</em><em>C</em><em>a</em><em>r</em><em>r</em><em>y</em><em>O</em><em>n</em><em>L</em><em>e</em><em>a</em><em>r</em><em>n</em><em>i</em><em>n</em><em>g</em>
Someone can install an operating system by disk or removable storage media.
Disk being floppy, tape or commonly a DVD.
Removable storage being a USBdrive.
Your issue is on line 19 in your if statement. In python, if you have more than one condition in an if statement, you have to explicitly mention it after the or.
Your if statement is
if again == "Y" or "y":
However, this will always return true because the second statement simply asks "y".
To correct this, simply change the if statement to:
if again == "Y" or again == "y":
This will correct your code.
Another thing to consider is to always convert a userinput (whenever possible) to one version, this can be accomplished in your code by converting "again" into one version by using the .lower function.
again = input("Would you like to draw a 3rd card? Y or N? ")
again = again.lower()
Hope this helps!
All of the above A, look up Info, B, get pictures and print, C, webpage is on the internet or computer hope this helps ~Vanessa
It can help ensure that everything is correct. Having an extra set of eyes can never hurt :)