hello people,
Im have learned python's concepts and can do a fair bit of coding in it. What I'm looking at is to create a real world GUI based program. Of which is plan to create the program text based and then convert it to GUI wxpython.
So before I did go ahead with that I thought of clearing my concepts/doubts:
1) what is the best way to create a program monolithic(Like in the Linux kernel all in one) or like the Micro Kernel (All servers communicating with each other to form a single program or Operating system in the case of the Mach kernel)?
2) Are there any real world examples or open source projects based on the above, which I could be directed towards.?
3) Is creating the programs Text based and then converting to GUI a good way to program ?
4) looking a cross-platform GUI based program, is wxpython the right way to go?
5) When going Menu Driven what function to use to call a file within the same folder to the corresponding choice file.
example:
c:\myprog\mainm enu.py
c:\myprog\menu_ option1.py
c:\myprog\menu_ option1.py
print "\nMain Menu:"
print "-----------"
# Print out the menu:
print "Please enter choice:"
print "1 - menu_option1"
print "5 - menu_option2"
# The input function both prompts the user for input and fetches it...
input_choice = int(input( "> " ))
if input_choice == 1:
print("menu_opt ion1 choosen")
print("how do i call menu_option2.py ")
else:
print("menu_opt ion2 choosen")
print("how do i call menu_option2.py ")
Any help would be wonderful. Thanks in advance!
Im have learned python's concepts and can do a fair bit of coding in it. What I'm looking at is to create a real world GUI based program. Of which is plan to create the program text based and then convert it to GUI wxpython.
So before I did go ahead with that I thought of clearing my concepts/doubts:
1) what is the best way to create a program monolithic(Like in the Linux kernel all in one) or like the Micro Kernel (All servers communicating with each other to form a single program or Operating system in the case of the Mach kernel)?
2) Are there any real world examples or open source projects based on the above, which I could be directed towards.?
3) Is creating the programs Text based and then converting to GUI a good way to program ?
4) looking a cross-platform GUI based program, is wxpython the right way to go?
5) When going Menu Driven what function to use to call a file within the same folder to the corresponding choice file.
example:
c:\myprog\mainm enu.py
c:\myprog\menu_ option1.py
c:\myprog\menu_ option1.py
print "\nMain Menu:"
print "-----------"
# Print out the menu:
print "Please enter choice:"
print "1 - menu_option1"
print "5 - menu_option2"
# The input function both prompts the user for input and fetches it...
input_choice = int(input( "> " ))
if input_choice == 1:
print("menu_opt ion1 choosen")
print("how do i call menu_option2.py ")
else:
print("menu_opt ion2 choosen")
print("how do i call menu_option2.py ")
Any help would be wonderful. Thanks in advance!
Comment