Python Forum
Guidance for learning python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Guidance for learning python
#1
Hey Guys, I am New here and i want to learn python coding.I basically know something about coding.But i dont know where to start learning python.I wish to learn it completely or the most important ones.So can u guide me and tell where to start and what are all the important things to learn Smile
buran write Jun-16-2024, 05:15 AM:
ALL CAPS is considered shouting
Reply
#2
Here is a start
https://www.python.org/about/gettingstarted/
https://www.youtube.com/watch?v=kqtD5dpn9C8
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags


Reply
#3
I just started Python last month. But I've been on Java switching over. Different syntax and ideas. But if anything here's a conceptual idea i got from programiz online compiler, which I am on learning.
The none type class and definitions of two functions. With a user greeting.
print("Try programiz.pro")
def greeting(username):
    print(f'Hello, {username.title()}!')
greeting('mike edwards')

def myfunc(Image):
    image = "NFL.gif"
    print("NFL, It's fantastic")
myfunc('NFL.gif')

def getbands(Image):
    image = 'NFL.gif'
getbands('NFL.gif')

print(getbands('NFL.gif'))
print(type(myfunc('NFL.gif')))
Quote:Try programiz.pro
Hello, Mike Edwards!
NFL, It's fantastic
None
NFL, It's fantastic
<class 'NoneType'>

=== Code Execution Successful ===
Programs are like instructions or rules. Learning it gets us closer to a solution. Desired outcome. Computer talk.
Reply
#4
one of my favorites is: python-course.eu
and also: How to think like a computer scientist: Interactive edition
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Need Guidance mridrees 4 1,067 Oct-23-2023, 09:28 PM
Last Post: MasCain
  Free courses on Python! Need your review and guidance to polish it sumitavobiswas 2 2,802 Apr-26-2019, 04:39 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020