Skip to content
Variables with starter code
  • Pages
    • The Task
    • icon picker
      Python Starter Code
    • CodeClips

Python Starter Code

Copy and paste the code below into your main.py file before you begin the task.

favouriteApp = "Instagram"
luckyNumber = 9
decimalNumber = 3.5
firstInitial = 'F'
vote = True

print('My favourite app is ' + favouriteApp)
print('My favourite lucky number is ' + str(luckyNumber))
print('My decimal number is ' + str(decimalNumber))
print('My first initital of my first name is ' + firstInitial)
print('Pineapple on a pizza? ' + str(vote))
 
Want to print your doc?
This is not the way.
Try clicking the ··· in the right corner or using a keyboard shortcut (
CtrlP
) instead.