Posts: 42
Threads: 6
Joined: May 2024
Jun-15-2024, 05:49 PM
(This post was last modified: Jun-15-2024, 05:49 PM by ebn852_pan.)
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.