mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-05-09 08:25:44 +02:00
[GH-ISSUE #275] "Some"+"Thing" don't work #114
Labels
No labels
bug
duplicate
easy
enhancement
enhancement
fixed
fixed
good first issue
hard
invalid
pull-request
wontfix
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Upsilon#114
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @BloomyInDev on GitHub (Sep 16, 2022).
Original GitHub issue: https://github.com/UpsilonNumworks/Upsilon/issues/275
Describe the bug
"Some"+"Thing" don't work
To Reproduce
Steps to reproduce the behavior:
var = "Some"+"Thing"and print itExpected behavior
It's print SomeThing
Device (please complete the following information):
@Yaya-Cout commented on GitHub (Sep 16, 2022):
It's normal : If you want a space, you need to run
var = "Some" + " Thing"(add a space), alternatively, you can useprint("Some","Thing")if you don't want to use spaces. You can test on CPython (official PC Python version).