Answer:
import random
print("Hello! I have a random number from 1 to 100! It is your job to try and guess it!")
number = random.randint(1,101)
guess = int(input("start to guess: "))
num_guesses = 1
while guess != number:
if guess > number:
print("lower")
guess = int(input("try again: "))
num_guesses +=1
elif guess < number:
print ("higher")
guess = int(input("start to guess: "))
num_guesses +=1
print("congrats it took you", num_guesses, "tries")
Explanation:
The format painter button in excel copies formatting from one place and it applies it to another
Answer:
Page.
Explanation:
A page typically occupies the largest portion of a document layout as it houses the main writeup or content of the document. The text contained in a document is written on a the main page of the document. The main page is surrounded by the page margin, which is an area which separates the tips or edges of an entire papwr and the writing area (page) of the document. The insertion point refers to an indicator which shows the position which a typed character will fall or be placed. Content written on a document's page is what is printed when the document is to be printed out and test entered on the page are what is seen by the reader.
Answer:
f = open('students.txt', 'r')
Explanation:
In the computing world, a command is an instruction to a computer program to execute a particular task. These instructions might be issued via a command-line interface, such as a shell program, or as a input to a network service as a component of a network protocol, or can be instructed as an event in a graphical user interface activated by the respective user selecting an option in a menu.
the f = open('students.txt', 'r') command line would be used to open a file named "students.txt", There are also various other types of commands for executing different task, for example:
1. ASSOC for Fix File Associations
2. FC for File Compare
3. IPCONFIG for IP Configuration
4. NETSTAT for Network Statistics
5. PING for Send Test Packets
6. TRACERT for Trace Route
7. POWERCFG for Power Configuration
e.t.c.
Question:the music is the soul who says this
Answer: Arthur Schopenhauer
Explanation: he says music is the language of feeling and of passion
question answered by
(jacemorris04)