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

Update to wk5 day2 #364

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion summer-of-code/week-05/day2.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ To store the string, or a number, in your computer’s memory for use later in y

Programmers often refer to this process as **assignment**, and they call the names **variables**.

A variable name can usually be just about any sequence of letters and numbers, but in Python the first character of this name needs to be a lowercase letter.
A variable name can usually be just about any sequence of letters and numbers, but in Python/JavaScript the first character of this name needs to be a lowercase letter.

Let’s try that last program again, but this time I will give the string the name `my_string` (though I could just as well have named it str or myOwnLittleString or henry_the_8th):

Expand Down