473,396 Members | 1,892 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

I don't even know what it's called...

I'm completely new to python, I just started about 3 days ago. I've requested some books from my library on python, so I hope I'm headed in the right direction. I hate to ask this because I'm sure it's been asked before, but I don't know what it is called so I don't even know where to begin. Is it possible to edit the code of a python program, while executing it.

Expand|Select|Wrap|Line Numbers
  1. if loop == 2:    
  2.     def menu(list,question):
  3.         for entry in list:
  4.             print 1+list.index(entry),
  5.             print ") " + entry
  6.  
  7.         return input (question) - 1
  8.  
  9. CEF = ['CURRENT OBJECTIVES','CURRENT TARGET','CURRENT MISSION','Exit']
  10.  
  11. name = raw_input("Please insert your name: ")
  12. print "Hello", name,"Welcome to the Information Desk"
  13. print ""
  14. while loop == 2:
  15.     choice = menu(CEF, "Please Select: ")
  16.     if choice == 0:
  17.         Print "There is no information"
  18.     if choice == 1:
  19.         print "There is no information"
  20.     if choice == 2:
  21.         print "There is no information"
  22.     if choice == 3:
  23.         print "Thank You",name
  24.         sleep(2)
  25.         loop = 4
  26.  
I want to change the places where it says "there is no information" to whatever I want, without having to edit the code manually, instead I would like to enter the information with the program itself. Almost like changing the value of a variable, except, making it permanent, so it will be like that next time I run the program.

Again, sorry if this has already been asked, but What is this called and How do I do it?
Jul 1 '08 #1
7 1571
jlm699
314 100+
Expand|Select|Wrap|Line Numbers
  1. if loop == 2:    
  2.     def menu(list,question):
  3.         for entry in list:
  4.             print 1+list.index(entry),
  5.             print ") " + entry
  6.  
  7.         return input (question) - 1
  8.  
  9. CEF = ['CURRENT OBJECTIVES','CURRENT TARGET','CURRENT MISSION','Exit']
  10.  
  11. name = raw_input("Please insert your name: ")
  12. print "Hello", name,"Welcome to the Information Desk"
  13. print ""
  14. while loop == 2:
  15.     choice = menu(CEF, "Please Select: ")
  16.     if choice == 0:
  17.         Print "There is no information"
  18.     if choice == 1:
  19.         print "There is no information"
  20.     if choice == 2:
  21.         print "There is no information"
  22.     if choice == 3:
  23.         print "Thank You",name
  24.         sleep(2)
  25.         loop = 4
A possibility would be to initialize variables before your while loop. Let's say:
choice0 = choice1 = choice2 = choice3 = 'There is no information'
Then during the loop you simply put print choice0 or print choice1...

During the loop Then you could store some kind of input with:
usr_input = raw_input('Enter some text: ')

Then you could assign one of your choices to the same value like
choice0 = usr_input

This might be what you're looking for. There's not really any specific name for this, it's just dynamic variables.
Jul 1 '08 #2
That's not exactly what I was wondering how to do. Let me rephrase:

Lets say I have a variable: a
in the code it would be written:
a = 0
When I run the code: print a
The output would be: 0
When running the program, I tell it: a = 1
in the code it would now be written:
a = 1

The actually code has changed.
How would I do this, if it is possible.

hope this makes sense.
Jul 4 '08 #3
You want it to remain as "a = 1" inside the actual code, so if you were to open it in Notepad, you would see "a = 1"?
Jul 4 '08 #4
Yes. Exactly...is that possible?
Jul 4 '08 #5
jlm699
314 100+
You could open the .py file, scan it, find the variable and then replace the value with some simple string manipulation.
Jul 7 '08 #6
how do you scan for the variables?
Jul 11 '08 #7
jlm699
314 100+
how do you scan for the variables?
You would have to write your own utility for parsing the file, but it would probably be something like this:
Expand|Select|Wrap|Line Numbers
  1. f = open( my_prog.py, 'r' )
  2.  
  3. for line in f:
  4.     data = line.split('=')
  5.     if len( data ) == 2:
  6.         var_name = data[0]
  7.         try:        
  8.             var_val = int( data[1] )
  9.             # Now you can change the value to whatever you want
  10.         except:
  11.             # Either a non-integer value or a string
  12.             pass
Simple file reading/writing and basic text parsing is all it is.
Jul 11 '08 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

303
by: mike420 | last post by:
In the context of LATEX, some Pythonista asked what the big successes of Lisp were. I think there were at least three *big* successes. a. orbitz.com web site uses Lisp for algorithms, etc. b....
20
by: Sam | last post by:
Hi I'm learning to code with C++ and wrote some very simple code. I think it's consistent with every rule but always got compiling errors that I don't understand. The code include 5 files as...
16
by: G Patel | last post by:
Hi, If I want to call functions that don't return int without declaring them, will there be any harm? I only want to assign the function(return value) to the type that it returns, so I don't...
13
by: Leon | last post by:
Why this code is not working? I think the problem is in the business class code.when I select a state from the dropdownlist, the school dropdownlist suppose to fill with school names, but somehow...
6
by: Erik Johnson | last post by:
Maybe I just don't know the right special function, but what I am wanting to do is write something akin to a __getattr__ function so that when you try to call an object method that doesn't exist,...
7
by: Dougan | last post by:
I've seen code that allocates an object on the stack and then saves a class reference to it. example: void ScribbleArea::resizeImage( const QSize &newSize) { QImage newImage( newSize, );...
21
by: jehugaleahsa | last post by:
Hello: I had an hour-long discussion with my boss today. Last night, right before I dozed off, I realized some of his code resulted in duplicate processing. I tried to explain it to him and he...
6
by: Tem | last post by:
I've read every example i could find on the subject and still couldn't figure out its proper usage. What's the point of delegates, why can't I just invoke the method directly??? Can someone...
1
Nepomuk
by: Nepomuk | last post by:
You might have heard about Linux, but you don't know what it is? Or you know a few things about it, but they terrify you? Well, then this article is for you. Don't be afraid - Everyone can use Linux!...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.