Top Categories
Install Python Basic / beginner code Tutorial 1 - Setting up for development
- Category: Information Technology
- Sub Category: Web Development
Install Python Basic / beginner code Tutorial 1 - Setting up for development
This tutorial covers setting up and starting you first python program. You should be able to write and run a script with one file and a function that prints "Hello World" to the Python Environment.
Here's the code:
def
Install Python Basic / beginner code Tutorial 1 - Setting up for development
This tutorial covers setting up and starting you first python program. You should be able to write and run a script with one file and a function that prints "Hello World" to the Python Environment.
Here's the code:
def say_hello():
message = "Hello"
print message
if __name__ == "__main__":
say_hello()
Install Python Basic / beginner code Tutorial 1 - Setting up for development