public:t-vien-12-1:lab_1_materials
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
public:t-vien-12-1:lab_1_materials [2012/01/11 11:23] – created hannes | public:t-vien-12-1:lab_1_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 5: | Line 5: | ||
- **Hello World:**\\ Create a program called **'' | - **Hello World:**\\ Create a program called **'' | ||
# HINT: Typical print statement | # HINT: Typical print statement | ||
- | print "This gets printed!" | + | print("This gets printed!" |
</ | </ | ||
- **Creating a Function: | - **Creating a Function: | ||
Line 11: | Line 11: | ||
def myfunc(x): | def myfunc(x): | ||
""" | """ | ||
- | print x | + | print(x) |
# Let's use our function to print out the number 3 | # Let's use our function to print out the number 3 | ||
myfunc(3) | myfunc(3) | ||
Line 19: | Line 19: | ||
mylist = [1, | mylist = [1, | ||
for x in mylist: | for x in mylist: | ||
- | print x | + | print(x) |
</ | </ | ||
- **Randomness and Command Line:**\\ Instead of greeting each friend once, make the program greet one at random and repeat this process as many times as you specify on the command line when you launch it. \\ \\ <code python> | - **Randomness and Command Line:**\\ Instead of greeting each friend once, make the program greet one at random and repeat this process as many times as you specify on the command line when you launch it. \\ \\ <code python> | ||
Line 25: | Line 25: | ||
import random # Import the ' | import random # Import the ' | ||
# Print a single random entry from a list | # Print a single random entry from a list | ||
- | print random.choice([' | + | print(random.choice([' |
</ | </ | ||
# NOTE: ' | # NOTE: ' | ||
Line 32: | Line 32: | ||
# from it, you could also have imported it explicitly first: | # from it, you could also have imported it explicitly first: | ||
from random import choice | from random import choice | ||
- | print choice([' | + | print(choice([' |
</ | </ | ||
# HINT: Reading a command line argument | # HINT: Reading a command line argument | ||
from sys import argv # Import the command line argument list ' | from sys import argv # Import the command line argument list ' | ||
if (len(argv)> | if (len(argv)> | ||
- | print argv[1] | + | print(argv[1]) |
</ | </ | ||
# HINT: Converting a string to a number and looping | # HINT: Converting a string to a number and looping | ||
i = int(' | i = int(' | ||
for j in range(i): | for j in range(i): | ||
- | print j | + | print(j) |
</ | </ | ||
- **A Class:**\\ Add the class **'' | - **A Class:**\\ Add the class **'' | ||
Line 62: | Line 62: | ||
def show(self): | def show(self): | ||
- | print "I have x=" | + | print("I have x=" |
# Let's creat an instance and call the show method | # Let's creat an instance and call the show method | ||
Line 70: | Line 70: | ||
# HINT: Creating and using a dictionary (also called a map or a hash table) | # HINT: Creating and using a dictionary (also called a map or a hash table) | ||
mydict = {" | mydict = {" | ||
- | print mydict[" | + | print(mydict[" |
</ | </ | ||
- **List of Tuples of Objects: | - **List of Tuples of Objects: | ||
Line 78: | Line 78: | ||
mytuple = (3, " | mytuple = (3, " | ||
# Any contained object can be referenced | # Any contained object can be referenced | ||
- | print mytuple[1] | + | print(mytuple[1]) |
mytuple[2].show() | mytuple[2].show() | ||
- | print mytuple[3][0] | + | print(mytuple[3][0]) # Prints 7 |
</ | </ | ||
- **Searching Lists:**\\ Add the function **'' | - **Searching Lists:**\\ Add the function **'' | ||
Line 88: | Line 88: | ||
for x in listA: | for x in listA: | ||
if x in listB: | if x in listB: | ||
- | print str(x)+" | + | print(str(x)+" |
</ | </ | ||
- **EXTRA: Networking and XML:**\\ Give each tool a price in some foreign currency and when you break it, print out its value in ISK. Use an up-to-date currency exchange rate, like the one you can get here in XML format: https:// | - **EXTRA: Networking and XML:**\\ Give each tool a price in some foreign currency and when you break it, print out its value in ISK. Use an up-to-date currency exchange rate, like the one you can get here in XML format: https:// | ||
Line 102: | Line 102: | ||
# We can extract XML elements by name (we get a list, but only take the first match) | # We can extract XML elements by name (we get a list, but only take the first match) | ||
current_weather_element = rssweather_xml.getElementsByTagName(" | current_weather_element = rssweather_xml.getElementsByTagName(" | ||
- | print " | + | print(" |
# Here we got the attribute of an element node, but to get the text of a text node, we can use node.nodeValue | # Here we got the attribute of an element node, but to get the text of a text node, we can use node.nodeValue | ||
</ | </ | ||
/var/www/cadia.ru.is/wiki/data/attic/public/t-vien-12-1/lab_1_materials.1326280985.txt.gz · Last modified: 2024/04/29 13:33 (external edit)