Skip to content

Commit a46d32d

Browse files
authored
Fixed a typo
1 parent 63baf74 commit a46d32d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Simple Calculator Tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In python, printing to the command line can be done using the `print()` statemen
66

77
## Intro to Input
88

9-
In python, user input on the command line can be taken by using the command `input()`. Putting in a string (optional) as a paramter will give the user a prompt after which they can input text. This statement returns a string with the text the user typed, so it needs to be assigneed to a variable. This can be done in python like so, `myvar = input("Feed me data! ")`. Python is not a language with strongly wyped variables, which means that you do not have to define a type when you create a variable. The interpreter will automatically assign the variable a type the first time it is instantiated with data.
9+
In python, user input on the command line can be taken by using the command `input()`. Putting in a string (optional) as a paramter will give the user a prompt after which they can input text. This statement returns a string with the text the user typed, so it needs to be assigneed to a variable. This can be done in python like so, `myvar = input("Feed me data! ")`. Python is not a language with strongly typed variables, which means that you do not have to define a type when you create a variable. The interpreter will automatically assign the variable a type the first time it is instantiated with data.
1010

1111
## Getting input from the user for a calculation
1212

0 commit comments

Comments
 (0)