1Python is an interpreted, high-level,
2general-purpose programming language.
3
4//as you can also see to your right --------------------->
5
6but also note interpreted, not compiled.
1Python is an interpreted, high-level, general-purpose programming language.
2
3Created by Guido van Rossum and first released in 1991, Python's design
4philosophy emphasizes code readability with its notable use of significant
5whitespace.
1# Action Statements
2
3print('hello world')
4
5# Varables
6
7x = 12
8
9y = input("Prompt")
10
11n = True
12
13if n:
14 # Some Stuff in here
15
16def N(Terms):
17 # Some Stuff in here
18
19N(x)
20
1RSAPSSSHA384(
2 base64UrlEncode(header) + "." +
3 base64UrlEncode(payload),
4 ,
5
6)