formulahendry / formulahendry/vscode-code-runner

range() Function

Open
#391 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
TypeScript
Stars
2.4k
Forks
351
PR merge metrics
No merged PRs in 30d

Description

VS Code Version: 1.28.2
OS Version: Ubuntu 18.04.1 64-bit
Code Runner Version: 0.9.5

**Describe the bug**
Unexpected output

**To Reproduce**
Steps to reproduce the behavior:

my_range = range(1,11)
print(my_range)
print(list(my_range))

**Actual behavior**
rod@rod-dev:python/VS Code$ python -u "/home/rod/VS Code/tempCodeRunnerFile.py"
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

**Expected behavior**
range(1, 11)
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.