Difference between revisions of "Making AI with Python"

(Introduction)
Line 1: Line 1:
== Introduction ==
+
===Introduction===
  
 
This manual will only work if you know Python. If you don't, go learn it at: [[Getting Started With Python Programming]].
 
This manual will only work if you know Python. If you don't, go learn it at: [[Getting Started With Python Programming]].
test
+
To start off, we might be a little intimidated by the blank code window. However, don't worry, here's something to fill it with:
   
+
  import random
i = 0
+
Yep! Not much, but pretty neccesary.
 
Hi
 

Revision as of 23:01, 14 September 2023

Introduction

This manual will only work if you know Python. If you don't, go learn it at: Getting Started With Python Programming. To start off, we might be a little intimidated by the blank code window. However, don't worry, here's something to fill it with:

import random

Yep! Not much, but pretty neccesary.