Quick actions

cmd+k|ctrl+k

Navigation

Languages

tute 1

Snippet info

Language

Python

Visibility

public

Author

tombennett

Created

2018-08-20T11:38:26Z

Updated

2018-08-20T11:38:26Z

# Python 01 Introduction

# print

# Basic types (int, float, boolean, string)

# expressions

# variables
a=1
b=200
print('wrfwerfwer\nwergwerg w')
if a>11 or b>150: print('yo')
INFO