expressPython : Express Python, A Small IDE
One of the reasons for creating this was to teach python. You can checkout my Python 3 tutorial series at http://pandabunnytech.com
Getting Started Guide : here
# Full API
# ---------------------------
# get method's have no parameters and others have one
#
# get_input - get input textbox's text
# set_input - set input textbox's text
# get_output - get output textbox's text
# set_output - get output textbox's text
# get_code - get code textbox's text
# set_code - set code textbox's text
# write_output- append to output box
# get_apppath - get exe path
# API Help/Code Sample
# ---------------------------
# get text from input box
# parameters - none
txt = get_input()
# change output box's text
# parameters - string
set_output("")
# append to output box
# does not add a new line
# parameters - string
write_output("Hi You,\n")
# get_apppath() -> get exe path
print ("expressPython.exe is at :", get_apppath())
- Python 3 Tutorial for Beginners #01 – Getting Started
- Python 3 Tutorial for Beginners #02 – Arithmetic and Logical Operators
- Python 3 Tutorial for Beginners #03 – If Statement and Python 3 Script Syntax
- Python 3 Tutorial for Beginners #04 – Python 3 For Loop
- Python 3 Tutorial for Beginners #05 – Python 3 While Loop
- Python 3 Tutorial for Beginners #06 – Python 3 Sequence Basics
- Python 3 Tutorial for Beginners #07 – Python 3 Sequence Slicing
- Python 3 Tutorial for Beginners #08 – Python 3 Dictionary Basics
- Python 3 Tutorial for Beginners #09 – Python 3 Dictionary Usage