issues Search Results · repo:pseudo-lang/pseudo-python language:Python
Filter by
11 results
(68 ms)11 results
inpseudo-lang/pseudo-python (press backspace or delete to remove)Getting the above error when running the latest pseudo-python on the fib.py example:
$ pseudo-python original.py
Traceback (most recent call last):
File /Users/rix0rrr/Dev/transpilation/pseudolang/.env/bin/pseudo-python ...
rix0rrr
- 1
- Opened on Oct 31, 2021
- #15
Python s pow operator (x**2) produces math.Pow(x, 2) in Go; however, in Go, math.Pow() only accepts floats, but in
Python, ** handles ints as well as floats. This means the Python program:
x = 2
print(x**2) ...
ns-cweber
- 3
- Opened on Jan 9, 2017
- #10
Compiling the following program to Go produces no error handling logic:
import sys
print(int(sys.argv[1]))
package main
import (
strconv
os
fmt
)
func main() {
_int, _ := strconv.Atoi(os.Args[1]) ...
ns-cweber
- 3
- Opened on Jan 9, 2017
- #9
I using Python 3.5.1 in ubuntu. I installed version of pseudo-python. a.py
data1 = int(input( Num : ))
max = 12
min = 1
while min =max:
print( %d * %d = %d % (data1,min,data1*min))
min+=1
...
wannaphong
- Opened on May 23, 2016
- #8
import sys
print(sys.stdin.readline())
Error:
Traceback (most recent call last):
File /usr/local/bin/pseudo-python , line 11, in module
sys.exit(main())
File /usr/local/lib/python3.5/site-packages/pseudo_python/main.py ...
enhancement
jzjsuper
- 1
- Opened on Mar 14, 2016
- #6
test.py:
def foo():
return [x + 1 for x in [1,2,3]]
Error:
Traceback (most recent call last):
File /usr/local/bin/pseudo-python , line 11, in module
sys.exit(main())
File /usr/local/lib/python3.5/site-packages/pseudo_python/main.py ...
bug
jzjsuper
- Opened on Mar 14, 2016
- #5
test.py:
a = map(lambda x: x + 1, [1, 2, 3])
When I try to convert test.py, the program throws the following error:
Traceback (most recent call last):
File /usr/local/bin/pseudo-python , line 11, ...
enhancement
jzjsuper
- 2
- Opened on Mar 14, 2016
- #3
I can t get it to read a file (I wanted to see the AST generated). I m on Mac OS 10.10.4 using Python 3.5.1 from
homebrew.
Versions:
ivan@probook ~ pip3 freeze
pseudo==0.2.3
pseudo-python==0.2.6
Sample ...
bug
ivanistheone
- 3
- Opened on Mar 13, 2016
- #2

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.