Plutonic Rainbows

Erasing and Writing to a Text File

This looks quite complicated but that's only because a lot of the lines can be condensed. The script opens the file, erases the contents and then allows the user to write in new data. Used with other scripts, it's quite a powerful few lines of code.

from sys import argv

script, filename = argv

print "We are going to erase %r." % filename
print "If you don't want that, press ctrl-c."
print "Otherwise, hit Return."

raw_input("?")

print "Opening the file..."
target = open(filename, 'w')

print "Truncating the file...Goodbye"
target.truncate()

print "Now I am going to ask you for three lines."

line1 = raw_input("Line 1")
line2 = raw_input("Line 2")
line3 = raw_input("line 3")

print "I am going to write these to the file."

target.write(line1)
target.write("\n")

target.write(line2)
target.write("\n")

target.write(line3)
target.write("\n")

print "And finally, we close it."
target.close()

Reading a Simple Text File with Python

Here's a script to read the contents of a text file.

from sys import argv

script, filename = argv

#open the file and read contents
txt = open(filename)
print txt.read()

print "Read the file again?"
file_again = raw_input("> ")
txt_again = open(file_again)
print txt_again.read()

Prompting, Unpacking and Variables

Remember that you need to call the script from the command line and then list the things you want to show.

So for instance, if the script is called 'ex12.py', then you would type 'python ex12.py apples strawberries pears'.

The results will then be printed out as:

The script is called: ex12.py

Your first variable is: apples

Your second variable is: strawberries

Your third variable is: pears

Anyway, here is the script.

from sys import argv

script, first, second, third = argv

print "\n"

print "The script is called:", script
print "\n"
print "Your first variable is:", first
print "\n"
print "Your second variable is:", second
print "\n"
print "Your third variable is:", third

print "\n"

Fahrenheit Calculator

Simple script that calculates degrees Fahrenheit.

# -*- coding: utf-8 -*-

x = float(raw_input("°C: "))

fahrenheit = x * 1.8 + 32

print "Fahrenheit: {0:.1f}°F".format (fahrenheit)

Nightfliers

Truly there is some absolute rubbish on Netflix. Quite how this sci-fi drama got remade is probably solely down to the success of the writer George R.R. Martin and the Game Of Thrones series.

However, don't be fooled. This series is simply dreadful. No coherent plot, poor acting and characters that do not engage the viewer whatsoever.