Difference between revisions of "HelloWorld - Python"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
m (Print Command Options: Removed rounded " and changed python to python3 (as all things should be))
m (Now Try: typos and format)
Line 43: Line 43:
  
 
=Now Try=
 
=Now Try=
1 Create a sqaure of 5x5, you can do this by writing 5 characters in one line and then copy this line 5 times.
+
# Create a square of 5x5, you can do this by writing 5 characters in one line and then copy this line 5 times.
 
+
# Create a triangle, it should be 5 lines high, the point should have a single character.
2 Create a triangle, it should be 5 lines high, the point should have a single character.
+
# Create a program to write out the chorus of your favourite song.
 
 
3 Create a program to write out the chorus of you favourite song.
 

Revision as of 01:37, 10 November 2020

Writing to the Screen

The first command you will need to learn for Python is the 'print()' command. This will do exactly as you would expect, it prints text to the screen:

print("anything as long as it is between the quotes")

Now to write helloworld to the screen we will need to use:

print("helloworld")

Remember Python is case sensitive so it is important to be precise with your coding

Try this and run your program.

Print Command Options

To display a string without going to a new line:

print ("Hello World" , end="")

To display the contents of a variable without going to a new line:

print (number1, end="")

To display a string and then move the output stream to a new line:

print ("Hello World")

To display the output of a variable and then move the output stream to a new line:

print (number1)

To move the output stream to a new line:

print ()

Now Try

  1. Create a square of 5x5, you can do this by writing 5 characters in one line and then copy this line 5 times.
  2. Create a triangle, it should be 5 lines high, the point should have a single character.
  3. Create a program to write out the chorus of your favourite song.