معرفی شرکت ها


arrowpython-0.0.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A programming language that transpiles to python. It has extremely similar syntax, but instead of colons (:), you use arrows (=>). Along with this, you are also able to call functions with only one argument with special syntax.
ویژگی مقدار
سیستم عامل -
نام فایل arrowpython-0.0.4
نام arrowpython
نسخه کتابخانه 0.0.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده RadioactiveRocket
ایمیل نویسنده -
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/arrowpython/
مجوز -
# ArrowPython A programming language that transpiles to python. It has extremely similar syntax, but instead of colons (`:`), you use arrows (`=>`). Along with this, you are also able to call functions with only one argument with the following syntax: ```python function:argument ``` This allows for statements such as this in ArrowPython: ```python print:"hello" ``` or: ```python str:1234 ``` It allows you to call single-argument functions whilst shortening the time it takes to write them. To use arrow python, first install it using: ```shell pip3 install arrowpython ``` Then, to use it in your program, create a new python file and before putting in any code write: ```python import arrowpython ``` If you are using IDLE, IDLE can often be finicky over syntax errors, as it tries to find then *before* the code is run. This way you will often have a hard time executing ArrowPython in IDLE. I'd reccomend using something like Sublime Text or VSCode. With that out of the way, this is an example of the popular FizzBuzz program in ArrowPython: ```python import arrowpython def fizbuzz:num => for fizzbuzz in range:num => if fizzbuzz % 3 == 0 and fizzbuzz % 5 == 0 => print:"fizzbuzz" continue elif fizzbuzz % 3 == 0 => print:"fizz" continue elif fizzbuzz % 5 == 0 => print:"buzz" continue print:fizzbuzz fizbuzz:51 ``` Have fun coding!


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl arrowpython-0.0.4:

    pip install arrowpython-0.0.4.whl


نصب پکیج tar.gz arrowpython-0.0.4:

    pip install arrowpython-0.0.4.tar.gz