소스 검색

Merge pull request #28 from bborysenko/patch-01

Fix print syntax
Swaroop C H 9 년 전
부모
커밋
29d6923926
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      basics.md

+ 3 - 3
basics.md

@@ -283,13 +283,13 @@ Type and run the following program:
 ```python
 # Filename : var.py
 i = 5
-print i
+print(i)
 i = i + 1
-print i
+print(i)
 
 s = '''This is a multi-line string.
 This is the second line.'''
-print s
+print(s)
 ```
 
 Output: