Files
uni/year4/semester1/CT4101: Machine Learning/materials/topic2/examples/staticvsdynamic1.py
2024-09-29 06:45:09 +01:00

6 lines
121 B
Python

x = 4 # no errors
x = 5 # no errors
x = 3.14159 # no errors
x = "Hello world!" # no errors
y = "abc123" # no errors