pseudo-python icon indicating copy to clipboard operation
pseudo-python copied to clipboard

a restricted python to javascript / c# / go / ruby compiler

Results 5 pseudo-python issues
Sort by recently updated
recently updated
newest added

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", line 33, in sys.exit(load_entry_point('pseudo-python==0.2.34', 'console_scripts', 'pseudo-python')())...

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...

Compiling the following program to Go produces no error handling logic: ```py import sys print(int(sys.argv[1])) ``` ```go package main import ( "strconv" "os" "fmt" ) func main() { _int, _...

I using Python 3.5.1 in ubuntu. I installed version of pseudo-python. a.py ``` python data1 = int(input("Num : ")) max = 12 min = 1 while min

``` python import sys print(sys.stdin.readline()) ``` Error: ``` Traceback (most recent call last): File "/usr/local/bin/pseudo-python", line 11, in sys.exit(main()) File "/usr/local/lib/python3.5/site-packages/pseudo_python/main.py", line 45, in main clj = yaml.dump(pseudo_python.translate(source)) File "/usr/local/lib/python3.5/site-packages/pseudo_python/__init__.py",...

enhancement