Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor Error in example #132

Open
Strike3D opened this issue Oct 17, 2018 · 2 comments
Open

Minor Error in example #132

Strike3D opened this issue Oct 17, 2018 · 2 comments

Comments

@Strike3D
Copy link

In https://pymbook.readthedocs.io/en/latest/thebeginning.html change
... a = 12 + 34

print(c) #this is a comment too :)
into
print(a) #this is a comment too :)

@Strike3D
Copy link
Author

in https://pymbook.readthedocs.io/en/latest/variablesanddatatypes.html change

a = 13
b = 23
a + b
36
into
a = 13
b = 23
c = a + b
print(c)
36

@Strike3D
Copy link
Author

in https://pymbook.readthedocs.io/en/latest/variablesanddatatypes.html change
number = float(input(""))
into
number = float(input("Enter number " + str(count+1) + " :"))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant