1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Margarita [4]
2 years ago
8

in Python. Write a program whose input is two integers. Output the first integer and subsequent increments of 10 as long as the

value is less than or equal to the second integer. No whitespace/newline at the end.
Computers and Technology
1 answer:
11111nata11111 [884]2 years ago
6 0

Answer:

a, b = list(map(int, input().split()))

sequence = []

while a + 10 <= b:

   sequence.append(a + 10)

   a += 10

print(*sequence)

Explanation:

You might be interested in
What kind of company would hire an Information Support and Service employee?
Murrr4er [49]

Answer:

B. Computer Repair

Explanation:

I got it right on edge. trust.

7 0
2 years ago
Read 2 more answers
-1
N76 [4]

Answer:A flowchart is a diagram that depicts the steps involved in solving a problem. The following flowchart shows how to output the multiplication table ( n * 1 to m * 1) of a number, n and m:

3 0
3 years ago
What is one difference between a web page and a web application?
saul85 [17]

Answer:

A website is a group of globally accessible, interlinked web pages which have a single domain name. A web application is a software or program which is accessible using any web browser. Developing your website helps you in branding your business.

8 0
2 years ago
What statement is accurate in regards to
lorasvet [3.4K]

The statement that is accurate in regards to sharing workbooks is that You must add the feature to the Quick Access Toolbar

<h3>What does a shared workbook implies?</h3>

The term connote the act of sharing an Excel file. Here, a person can give other users any form of access to the same document.

Sharing workbook is one that allow people to make any kinds of edits at the same time, which saves a person the trouble of keeping track of different versions.

Learn more about workbooks from

brainly.com/question/5450162

7 0
1 year ago
Rutherford presented his first slide, which consisted of a conceptual map of
sergejj [24]

Your answer would be D.

8 0
3 years ago
Read 2 more answers
Other questions:
  • A banker would like to present a spreadsheet as part of a presentation to potential clients. The spreadsheet makes use of severa
    14·1 answer
  • According to a recent study, more than 75 percent of teens between the ages of twelve and seventeen in the United States have a
    11·2 answers
  • A powerful computer that acts as a hub for other computers is a called a ______.
    6·2 answers
  • When planning a backup strategy, ideally one needs to prioritize important data and only back up what is absolutely necessary fo
    15·1 answer
  • What saw do you use to cut wood in design and technology
    7·1 answer
  • Which of the following are characteristics of algorithms? Choose all that apply. They take a step-by-step approach to performing
    12·1 answer
  • In order to get a comprehensive evaluation of the computer programmers he managed, Justin organized a(n) __________, where he as
    11·1 answer
  • Which text features does this section contain? Check all that apply.
    15·1 answer
  • What is the d/c b/n information rich and information poor society​
    13·1 answer
  • Which of the following is NOT a type of insurance fraud?
    14·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!