Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Python newbie

Status
Not open for further replies.

blainepruitt

Technical User
Joined
Apr 18, 2002
Messages
105
Location
US
Hello all,

I am extremely new to Python and was hoping someone could help me find my way. For starters, how can I get it echo or print a variable to the screen for me. For example:

rowEntry = guiData.GetRequestField(GuiHandle, "TBname", "FieldNM", -1)

From here I would like to print the value for rowEntry, for debugging purposes. Secondly, does anyone know of any problems with the 'and' statement? I have tried using it with two variables, and the only thing I can figure is one or both of them is null. Any help that can be provided would be greatly appreciated. Thanks in advance for any help.

Thanks,
Blaine
 
print(rowEntry)

=)

I've never had, or heard of, any problems with "and".

If you want a nice place to start learning python check out the tutorial at python.org ( that's where I took my first steps in python. It was pretty helpful.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top