You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...3> # in Python variables are references
....4> a = 3
/bin/sh: a: command not found
....5> a = 'hello world'
/bin/sh: a: command not found
....6> a = [1,2,3]
/bin/sh: a: command not found
....7> b = a
Does it work on mac? It's like we run python in shell.
The text was updated successfully, but these errors were encountered:
Same problem here on debian running zshell, from some videos i have seen from massimo it shouldn't behave like that.
Edit, only works with characters between double quotes...i've seen in the vimeo video that terminal switches modes... does the mac terminal behaves like that?
Running the readem command
python kryten.py -d 0.05 -n -p python101.play
prints errors like these:
...3> # in Python variables are references
....4> a = 3
/bin/sh: a: command not found
....5> a = 'hello world'
/bin/sh: a: command not found
....6> a = [1,2,3]
/bin/sh: a: command not found
....7> b = a
Does it work on mac? It's like we run python in shell.
The text was updated successfully, but these errors were encountered: