Python: printing every other input using a for loop

  • #1
Sunwoo Bae
59
4
Homework Statement:
I have to print every other input.
Relevant Equations:
you are not given input to put in or the total number of input, but the input shows a total number of strings in the first line and the rest consists of alternation of string and integer.
for example, the input can be:

3
12
tiger
11
cats
10
dogs
I want my output to read only the integers. Here's my attempt:

number = int(input())

for i in range(2, number+1, 2):
print(input())
 

Answers and Replies

  • #2
14,291
8,320
Here's some code that illustrates what you are trying to do. Basically if the int(some_string) fails to extract a number an exception is thrown.

https://pynative.com/python-check-user-input-is-number-or-string/

Alternatively, you could parse the string into characters and use the isdigit() function to see if all are digits or '.' or - or + ... depending on what you define as an acceptable number.
 
  • #3
36,877
8,926
Homework Statement: I have to print every other input.
Homework Equations: you are not given input to put in or the total number of input, but the input shows a total number of strings in the first line and the rest consists of alternation of string and integer.
for example, the input can be:

3
12
tiger
11
cats
10
dogs

I want my output to read only the integers. Here's my attempt:

number = int(input())

for i in range(2, number+1, 2):
print(input())
The first number indicates the number of strings in the sequence of inputs. It should be used to control a for loop that runs that many times, with pairs of input calls. For example, in your sample inputs, the first number entered indicates that three strings will be in the input sequence. Because the rest of the input values alternate between integers and strings, the loop body should do two inputs: the first to input a number and the second to input a string but not do anything with it.

Notice that the problem statement says "the rest consists of alternation of string and integer." but the sample input sequence has this alternation in the opposite order. That is, as integer, string, integer, string, and so on.

I wrote a short program that appears to satisfy the program requirements, using exactly the sample inputs you wrote. Here is the output from that program.
Code:
Number of strings: 3
12
Val:  12
tiger
11
Val:  11
cats
10
Val:  10
dogs
The only output from my program are the initial prompt to enter the first number and the lines that start with Val: ...
All other lines are what I typed as inputs to the program.
 

Suggested for: Python: printing every other input using a for loop

Replies
6
Views
113
Replies
6
Views
737
Replies
4
Views
757
Comp Sci Graph in python
  • Last Post
Replies
4
Views
540
  • Last Post
Replies
1
Views
785
  • Last Post
Replies
5
Views
1K
  • Last Post
Replies
4
Views
587
Replies
1
Views
838
  • Last Post
Replies
18
Views
613
  • Last Post
Replies
14
Views
2K
Top