Good resources to for learning python for ai? #197185
Replies: 4 comments 1 reply
-
|
i would start with cs50p and automate the boring stuff for python basics for ai stuff: andrew ng or astai freecodecamp best way to learn is honestly just building small projects while learning |
Beta Was this translation helpful? Give feedback.
This comment was marked as low quality.
This comment was marked as low quality.
-
|
If you're learning Python specifically for AI, I'd focus on Python fundamentals first before jumping into AI frameworks. A path that worked for me: Core Python (functions, OOP, file handling) Resources I found useful: CS50 Python Also, start building small projects early. Even simple AI projects teach more than watching lots of tutorials. |
Beta Was this translation helpful? Give feedback.
-
|
So I would read @Yanvi09's post if you're 1–2 years into coding and have got the basics down and are confident with Python. In case you haven't gone that far, here's what I'd do if I were you:
# This is a variable. It stores a value
x = 7
print(x)
# output: 7
x = "Hello World"
print(x)
# output: Hello World
x = 4
y = 3
print(x+y)
# output: 7
x = input("Enter a number: ") # this is where the user (YOU) can type in a number or text (text is in quotes for python)
y = 5
# E.g you type in 9
print(x-y)
# output: 4
Anyways, hope at least one of us "correctly" answered your question. If not tag me below with the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Question
Body
Kindly drop your suggestions
Guidelines
Beta Was this translation helpful? Give feedback.
All reactions