diff --git a/main.py b/main.py index 5ff5261..a8bafff 100644 --- a/main.py +++ b/main.py @@ -1,10 +1,18 @@ -#Global test -x = 0 -print(x) - -def myfunc(): - global x - x = 1 - print(x) - -myfunc() +#Test most default useable datatypes +x = [ + 1, + 1.1, + 1j, + True, + [1], + (1), + [1], + {1}, + {0:1}, + frozenset({1}), + "hell", + b"heelo", + None + ] +a,b,c,d,e,f,g,h,i,j,k,l,m = x +print(type(a),type(b),type(c),type(d),type(e),type(f),type(g),type(h),type(i),type(j),type(k),type(l),type(m))