Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #72.8K
2 Posted Topics
Re: s = "Hello" y = "" for i in range(len(s) - 1, 0, -1): y.append(s[i]) y = y.upper() | |
Re: x = "real" y = "" for i in range(len(x)-1, 0, -1): y.append(x[i]) y = y.upper() |
The End.