Python Forum
Program doesnt return beginning
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Program doesnt return beginning
#1
num=int(input("age:" ))

if num>18:
    print("old")
else:
   print("young")
When this code is first running there is no problem, but entering second input , print only data value instead condition statement
Larz60+ write Feb-15-2023, 06:21 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Fixed for you this time. Please use BBCode tags on future posts.

(I also fixed incorrect indent)
Reply
#2
I do not understand the question. Your code provides no way to enter a second input. You run the program. The program waits for you press the enter key. The program converts whatever you typed into an int. If the int is > 19 the program prints "old", otherwise it prints "young". Execution reaches the end of the program, and the program ends.

Do you want to repeat the code? (get input, print...)? To do that you need some kind of loop (for or while).
Reply
#3
how did you run the second time.
The way your code is structured, it will run once then exit program.

In order to continue, you need to create a loop.
Then, if you create a loop, you should also create a condition that will allow you to exit the loop.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Just beginning dalekeel 2 1,474 Apr-15-2024, 11:49 AM
Last Post: Pedroski55
  List of dataframe values beginning with x,y or z glidecode 3 2,692 Nov-08-2021, 10:16 PM
Last Post: glidecode
  How to start the program from the beginning. iamaghost 5 4,660 Feb-23-2021, 03:40 AM
Last Post: deanhystad
  code doesnt return anything ofrihemo 3 2,897 Jun-30-2020, 05:14 PM
Last Post: ofrihemo
  why doesnt the while loop run? supermane 3 3,945 Aug-04-2018, 06:01 AM
Last Post: wavic
  Beginning of Beginner Help: Should I start with Python? appdevelnewb 2 3,707 Jul-23-2018, 11:17 PM
Last Post: appdevelnewb
  Wrap from end to beginning. 27 to 1, 28 to 2 etc DreamingInsanity 5 4,848 Jun-24-2018, 01:02 PM
Last Post: ljmetzger
  Why does this work and this doesnt= puruvaish24 1 3,183 May-22-2018, 03:58 AM
Last Post: scidam
  How to Loop CSV File Beginning at Specific Row? bmccollum 5 42,947 Nov-05-2017, 11:04 PM
Last Post: bmccollum
  Need help for beginning coding sylas 13 10,298 Mar-28-2017, 06:36 AM
Last Post: sylas

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020