Site Map - skip to main content

Hacker Public Radio

Your ideas, projects, opinions - podcasted.

New episodes Monday through Friday.


hpr0282 :: Python Programming 101: Part 2

Xoke continues the Programming 101 series

<< First, < Previous, Latest >>

Hosted by Xoke on Wednesday 2009-01-28 is flagged as Explicit and is released under a CC-BY-NC-SA license.
Tags: Programming,Python.
Listen in ogg, spx, or mp3 format. | Comments (0)

Part of the series: Programming 101

A series focusing on concepts and the basics of programming

print ("Hello World")

print ("Hello \"World")

x = 1
print (x)

x = 1
x = x + 5
x = x * 7
print (x)

x = 1 + 5 * 7
print (x)

x = (1 + 5) * 7
print (x)

# This is a comment
x = (1 + 5) * 7
# print ("5")
print (x)

x = "Hello World"
print (x)

x = "Hello"
y = "World"
print (x+y)

x = "Hello"
y = "World"
print (x + " " + y)

sFirstName = "John"
sSurname = "Smith"
print ("Dear " + sFirstName + " " + sSurname)

x = 13
sFirstName = "John"
sSurname = "Smith"
if x < 12:
	print ("Good Morning " + sFirstName + " " + sSurname)
else:
	print ("Good Evening " + sFirstName + " " + sSurname)

x = 11
sFirstName = "John"
sSurname = "Smith"
if x < 12:
	print ("Good Morning " + sFirstName + " " + sSurname)
else:
	print ("Good Evening " + sFirstName + " " + sSurname)
print ("When does this get printed?")

Show Transcript

Automatically generated using whisper

whisper --model tiny --language en hpr0282.wav


Comments

Subscribe to the comments RSS feed.

<< First, < Previous, Latest >>

Leave Comment

Note to Verbose Commenters
If you can't fit everything you want to say in the comment below then you really should record a response show instead.

Note to Spammers
All comments are moderated. All links are checked by humans. We strip out all html. Feel free to record a show about yourself, or your industry, or any other topic we may find interesting. We also check shows for spam :).

Provide feedback
Your Name/Handle:
Title:
Comment:
Anti Spam Question: What does the P in HPR stand for ?
Are you a spammer →
Who hosted this show →
What does HPR mean to you ?