My First Podcast: Bitesize Revision for GCSE Computer Science

I’ve created a podcast for GCSE Computer Science students to revise topics in small “bite size” chunks. I’m slowly releasing new episodes, but I’ve committed to doing an episode a week, as I realised people were actually listening to them. You can either listen using the embed below or go direct to the page here,

https://creators.spotify.com/pod/show/bitesize-computer-science

where you can leave an audio message, which I might include in a future podcast! Read more…

Python exercises in the browser from Data Camp



#use the variables below to print out "Hello Laura"
name = "Laura"
greeting = "Hello"

print out "Hello Laura"

name = "Laura"
greeting = "Hello"


print(greeting +" "+name)


test_function("print")
success_msg("Good stuff!")


Put variables into a print function

https://github.com/datacamp/datacamp-light-wordpress



#print the numbers 0 to 19

print the numbers 0 to 19

for i in range(10):
print(i)


for i in range(20):
print(i)


success_msg("Good stuff!")


Change the 10 to 20