Skip to content
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
6 changes: 3 additions & 3 deletions test_sample.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
x=input("enter integer:")
a = input("Type a word: )
b=10
Comment on lines +1 to 2

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggested comment: SyntaxError: EOL while scanning string literal
in 1

result= x+b
print(result)
result= "a"+b
prints("output:",result)
Comment on lines +3 to +4

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggested comment: Type Error: can only concatenate str (not " in 3


Comment on lines +4 to 5

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggested comment: NameError: name 'prints' is not defined in 4