Skip to content

Commit 614e0de

Browse files
committed
fixed string-format-parameter
1 parent ee354dc commit 614e0de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

beginnerscorner/crashcourse-0/01_print.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
print 8*'#'
2626

2727
# some formatting stuff
28-
print 'parse string %s and integer %i' % 'ssd', 23
28+
print 'parse string %s and integer %i' % ('ssd', 23)
2929

3030
''' i am
3131
a multiline

0 commit comments

Comments
 (0)