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]]. | ||
− | + | 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. | |
− | |||
− |
Revision as of 22: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.