hpr0282 :: Python Programming 101: Part 2

Xoke
Language: English
Source:
Now Playing

1/1hpr0282

00:00
00:00
1 Chapter(s)
  • 1. hpr0282

About

Summary: Xoke continues the Programming 101 series

Series: Programming 101

Source: [http://hackerpublicradio.org/eps.php?id=0282](http://hackerpublicradio.org/eps.php?id=0282)

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?")

Comments

Be the first to comment

There aren't any comments on this content yet. Start the conversation!

Tags: hpr0282 :: Python Programming 101: Part 2 audio, hpr0282 :: Python Programming 101: Part 2 - Xoke audio, free audiobook, free audio book, audioaz

SPONSORED AD