markyparky56 wrote:
ssss wrote:
actually, MIT + SCRATCH should actually be int(MIT) + int(SCRATCH). It lookes more proffesional, and let's you do equations like int(MIT) - 4 * int(SRATCH)
That looks like your calling a function called int() when ever you use an interger variable... Having learnt the basics of C++, I would've thought you declared a variable by stating what kinda it was (int) the name of it (Scratch) and its value ([large number])
So you'd have something:Code:
int Scratch = 34829434838048The value for scratch is just random. Is this done through the int() part of the code? just in brackets?
*cough* I was using the examples from the builderdd's original post */cough*
Offline
markyparky56 wrote:
ssss wrote:
actually, MIT + SCRATCH should actually be int(MIT) + int(SCRATCH). It lookes more proffesional, and let's you do equations like int(MIT) - 4 * int(SRATCH)
That looks like your calling a function called int() when ever you use an interger variable... Having learnt the basics of C++, I would've thought you declared a variable by stating what kinda it was (int) the name of it (Scratch) and its value ([large number])
So you'd have something:Code:
int Scratch = 34829434838048The value for scratch is just random. Is this done through the int() part of the code? just in brackets?
Python is dynamically typed so you don't have to declare the variable type (unlike C++ which is statically typed) You're right about int() being function it just takes a number or string and returns an integer.
Offline
I can't wait to become a scratcher! Once I do, I will take over the Python Library! Also, that is the reason why there is nothing new.
Offline
wcfs96 wrote:
markyparky56 wrote:
ssss wrote:
actually, MIT + SCRATCH should actually be int(MIT) + int(SCRATCH). It lookes more proffesional, and let's you do equations like int(MIT) - 4 * int(SRATCH)
That looks like your calling a function called int() when ever you use an interger variable... Having learnt the basics of C++, I would've thought you declared a variable by stating what kinda it was (int) the name of it (Scratch) and its value ([large number])
So you'd have something:Code:
int Scratch = 34829434838048The value for scratch is just random. Is this done through the int() part of the code? just in brackets?
Python is dynamically typed so you don't have to declare the variable type (unlike C++ which is statically typed) You're right about int() being function it just takes a number or string and returns an integer.
Hmmm... do you have to use the int() function every time you want to use an integer variable, or just the first time it's used?
Offline
markyparky56 wrote:
wcfs96 wrote:
markyparky56 wrote:
That looks like your calling a function called int() when ever you use an interger variable... Having learnt the basics of C++, I would've thought you declared a variable by stating what kinda it was (int) the name of it (Scratch) and its value ([large number])
So you'd have something:Code:
int Scratch = 34829434838048The value for scratch is just random. Is this done through the int() part of the code? just in brackets?
Python is dynamically typed so you don't have to declare the variable type (unlike C++ which is statically typed) You're right about int() being function it just takes a number or string and returns an integer.
Hmmm... do you have to use the int() function every time you want to use an integer variable, or just the first time it's used?
Never. In the math things.
Offline
markyparky56 wrote:
wcfs96 wrote:
markyparky56 wrote:
That looks like your calling a function called int() when ever you use an interger variable... Having learnt the basics of C++, I would've thought you declared a variable by stating what kinda it was (int) the name of it (Scratch) and its value ([large number])
So you'd have something:Code:
int Scratch = 34829434838048The value for scratch is just random. Is this done through the int() part of the code? just in brackets?
Python is dynamically typed so you don't have to declare the variable type (unlike C++ which is statically typed) You're right about int() being function it just takes a number or string and returns an integer.
Hmmm... do you have to use the int() function every time you want to use an integer variable, or just the first time it's used?
No you don't have to use it anytime when using an integer, the only thing I really use int() for is to make a String into an Integer.
Offline
thebuilderdd wrote:
markyparky56 wrote:
wcfs96 wrote:
Python is dynamically typed so you don't have to declare the variable type (unlike C++ which is statically typed) You're right about int() being function it just takes a number or string and returns an integer.Hmmm... do you have to use the int() function every time you want to use an integer variable, or just the first time it's used?
Never. In the math things.
Oh, I think I get it now. So when your just using a variable to hold some data, you don't need to define what kind of variable it is? But in mathy uo have to use the int() function.
Offline
markyparky56 wrote:
thebuilderdd wrote:
markyparky56 wrote:
Hmmm... do you have to use the int() function every time you want to use an integer variable, or just the first time it's used?Never. In the math things.
Oh, I think I get it now. So when your just using a variable to hold some data, you don't need to define what kind of variable it is? But in mathy uo have to use the int() function.
![]()
You don't need to declare the type, Python figures it out itself. The only time you use an int(), float(), str(), etc. is for type conversion.
Offline
thebuilderdd wrote:
Pecola1 wrote:
I don't get panther, can you help me? So I open it and its a black screen, I type in print('hi') and it adds hi
>>>
how do I save it? How do I open it? HELP ME PLEASE!This is Python. Oh, you called it Panther. Anyway, print('hi') means say Hi when the code is run. Saving it is just a breeze. You know, File save. File Open. Oh, for a key, make sure to type .py at the end.
I know some functions, but how do i save it, do i type File Save? What do i open for Python, python or pythonw?
Offline
Pecola1 wrote:
thebuilderdd wrote:
This is Python. Oh, you called it Panther. Anyway, print('hi') means say Hi when the code is run. Saving it is just a breeze. You know, File save. File Open. Oh, for a key, make sure to type .py at the end.
I know some functions, but how do i save it, do i type File Save? What do i open for Python, python or pythonw?
Just make a script using a text editor and save the file with a .py extension. then either open it with a Python running program you have, or open Python in the terminal and type
import *filepath*
, where *filepath* is the path to the script you saved. Do not include the '.py' extension.
Offline
floppy_gunk wrote:
Pecola1 wrote:
thebuilderdd wrote:
This is Python. Oh, you called it Panther. Anyway, print('hi') means say Hi when the code is run. Saving it is just a breeze. You know, File save. File Open. Oh, for a key, make sure to type .py at the end.
I know some functions, but how do i save it, do i type File Save? What do i open for Python, python or pythonw?
Just make a script using a text editor and save the file with a .py extension. then either open it with a Python running program you have, or open Python in the terminal and type
Code:
import *filepath*, where *filepath* is the path to the script you saved. Do not include the '.py' extension.
Oh... I have to put it on a text thing, and save it as a .py then open it with python, thanks! (BTW: why not pi? You know:
3. 1415 9265 3589 7932 3846 2643 3832 7950 2884 1971 6939 9375 1058 2097 4944 5923 0781 6406 2862 0899 8628 0348 2534 2117 0679 8214 8086 5132 8230 6647 0938 4460 9550 5822 3172 5359 4081 2848 1117 4502 8410 2701 9385 2110 5559 6446 2294 8954 9303 8196 4428 8109 7566 5933 4461 2847 5648 2337 8678 3165 2712 0190 9145 6485 6692 3460 3486 1045 4326 6482 1339 3607 2602 4914 1273 7245 8700 6606 3155 8817 4881 5209 2096 2829 2540 9171 5364 3678 9259 0360 0113 3053 0548 8204 6652 1384 1469 5194 1511 6094 3305 7270 3657 5959 1953 0921 8611 7381 9326 1179 3105 1185 4807 4462 3799 6274 9567 3518 8575 2724 8912 2793 8183 0119 4912 9833 6733 6244 0656 6430 8602 1394 9463 9522 4737 1907 0217 9860 9437 0277 0539 2171 7629 3176 7523 8467 4818 4676 6940 5132 0005 6812 7145 2635 6082 7785 7713 4275 7789 6091 7363 7178 7214 6844 0901 2249 5343 0146 5495 8537 1050 7922 7968 9258 9235 4201 9956 1121 2902 1960 8640 3441 8159 8136 2977 4771 3099 6051 8707 2113 4999 9998 3729 7804 9951 0597 3173 2816 0963 1859 5024 4594 5534 6908 3026 4252 2308 2533 4468 5035 2619 3118 8171 0100 0313 7838 7528 8658 7533 2083 8142 0617 1776 6914 7303 5982 5349 0428 7554 6873 1159 5628 6388 2353 7875 9375 1957 7818 5778 0532 1712 2680 6613 0019 2787 6611 1959 0921 6420 1989 3809 5257 2010 6548 5863 2788 6593 6153 3818 2796 8230 3019 5203 5301 8529 6899 5773 6225 9941 3891 2497 2177 5283 4791 3151 5574 8572 4245 4150 6959 5082 9533 1168 6172 7855 8890 7509 8381 7546 3746 4939 3192 5506 0400 9277 0167 1139 0098 4882 4012 8583 6160 3563 7076 6010 4710 1819 4295 5596 1989 4676 7837 4494 4825 5379 7747 2684 7104 0475 3464 6208 0466 8425 9069 4912 9331 3677 0289 8915 2104 7521 6205 6966 0240 5803 8150 1935 1125 3382 4300 3558 7640 2474 9647 3263 9141 9927 2604 2699 2279 6782 3547 8163 6009 3417 2164 1219 9245 8631 5030 2861 8297 4555 7067 4983 8505 4945 8858 6926 9956 9092 7210 7975 0930 2955 3211 6534 4987 2027 5596 0236 4806 6549 9119 8818 3479 7753 5663 6980 7426 5425 2786 2551 8184 1757 4672 8909 7777 2793 8000 8164 7060 0161 4524 9192 1732 1721 4772 3501 4144 1973 5685 4816 1361 1573 5255 2133 4757 4184 9468 4385 2332 3907 3941 4333 4547 7624 1686 2518 9835 6948 5562 0992 1922 2184 2725 5025 4256 8876 7179 0494 6016 5346 6804 9886 2723 2791 7860 8578 4383 8279 6797 6681 4541 0095 3883 7863 6095 0680 0642 2512 5205 1173 9298 4896 0841 2848 8626 9456 0424 1965 2850 2221 0661 1863 0674 4278 6220 3919 4945 0471 2371 3786 9609 5636 4371 9172 8746 7764 6575 7396 2413 8908 6583 2645 9958 1339 0478 0275 9009 9465 7640 7895 1269 4683 9835 2595 7098 2582 2620 5224 8940 7726 7194 7826 8482 6014 7699 0902 6401 3639 4437 4553 0506 8203 4962 5245 1749 3996 5143 1429 8091 9065 9250 9372 2169 6461 5157 0985 8387 4105 9788 5959 7729 7549 8930 1617 5392 8468 1382 6868 3868 9427 7415 5991 8559 2524 5953 9594 3104 9972 5246 8084 5987 2736 4469 5848 6538 3673 6222 6260 9912 4608 0512 4388 4390 4512 4413 6549 7627 8079 7715 6914 3599 7700 1296 1608 9441 6948 6855 5848 4063 5342 2072 2258 2848 8648 1584 5602 8506 0168 4273 9452 2674 6767 8895 2521 3852 2549 9546 6672 7823 9864 5659 6116 3548 8623 0577 4564 9803 5593 6345 6817 4324 1125 1507 6069 4794 5109 6596 0940 2522 8879 7108 9314 5669 1368 6722 8748 9405 6010 1503 3086 1792 8680 9208 7476 0917 8249 3858 9009 7149 0967 5985 2613 6554 9781 8931 2978 4821 6829 9894 8722 6588 0485 7564 0142 7047 7555 1323 7964 1451 5237 4623 4364 5428 5844 4795 2658 6782 1051 1413 5473 5739 5231 1342 7166 1021 3596 9536 2314 4295 2484 9371 8711 0145 7654 0359 0279 9344 0374 2007 3105 7853 9062 1983 8744 7808 4784 8968 3321 4457 1386 8751 9435 0643 0218 4531 9104 8481 0053 7061 4680 6749 1927 8191 1979 3995 2061 4196 6342 8754 4406 4374 5123 7181 9217 9998 3910 1591 9561 8146
)
Offline
Pecola1 wrote:
floppy_gunk wrote:
Pecola1 wrote:
I know some functions, but how do i save it, do i type File Save? What do i open for Python, python or pythonw?Just make a script using a text editor and save the file with a .py extension. then either open it with a Python running program you have, or open Python in the terminal and type
Code:
import *filepath*, where *filepath* is the path to the script you saved. Do not include the '.py' extension.
Oh... I have to put it on a text thing, and save it as a .py then open it with python, thanks! (BTW: why not pi? You know:
Code:
3. 1415 9265 3589 7932 3846 2643 3832 7950 2884 1971 6939 9375 1058 2097 4944 5923 0781 6406 2862 0899 8628 0348 2534 2117 0679 8214 8086 5132 8230 6647 0938 4460 9550 5822 3172 5359 4081 2848 1117 4502 8410 2701 9385 2110 5559 6446 2294 8954 9303 8196 4428 8109 7566 5933 4461 2847 5648 2337 8678 3165 2712 0190 9145 6485 6692 3460 3486 1045 4326 6482 1339 3607 2602 4914 1273 7245 8700 6606 3155 8817 4881 5209 2096 2829 2540 9171 5364 3678 9259 0360 0113 3053 0548 8204 6652 1384 1469 5194 1511 6094 3305 7270 3657 5959 1953 0921 8611 7381 9326 1179 3105 1185 4807 4462 3799 6274 9567 3518 8575 2724 8912 2793 8183 0119 4912 9833 6733 6244 0656 6430 8602 1394 9463 9522 4737 1907 0217 9860 9437 0277 0539 2171 7629 3176 7523 8467 4818 4676 6940 5132 0005 6812 7145 2635 6082 7785 7713 4275 7789 6091 7363 7178 7214 6844 0901 2249 5343 0146 5495 8537 1050 7922 7968 9258 9235 4201 9956 1121 2902 1960 8640 3441 8159 8136 2977 4771 3099 6051 8707 2113 4999 9998 3729 7804 9951 0597 3173 2816 0963 1859 5024 4594 5534 6908 3026 4252 2308 2533 4468 5035 2619 3118 8171 0100 0313 7838 7528 8658 7533 2083 8142 0617 1776 6914 7303 5982 5349 0428 7554 6873 1159 5628 6388 2353 7875 9375 1957 7818 5778 0532 1712 2680 6613 0019 2787 6611 1959 0921 6420 1989 3809 5257 2010 6548 5863 2788 6593 6153 3818 2796 8230 3019 5203 5301 8529 6899 5773 6225 9941 3891 2497 2177 5283 4791 3151 5574 8572 4245 4150 6959 5082 9533 1168 6172 7855 8890 7509 8381 7546 3746 4939 3192 5506 0400 9277 0167 1139 0098 4882 4012 8583 6160 3563 7076 6010 4710 1819 4295 5596 1989 4676 7837 4494 4825 5379 7747 2684 7104 0475 3464 6208 0466 8425 9069 4912 9331 3677 0289 8915 2104 7521 6205 6966 0240 5803 8150 1935 1125 3382 4300 3558 7640 2474 9647 3263 9141 9927 2604 2699 2279 6782 3547 8163 6009 3417 2164 1219 9245 8631 5030 2861 8297 4555 7067 4983 8505 4945 8858 6926 9956 9092 7210 7975 0930 2955 3211 6534 4987 2027 5596 0236 4806 6549 9119 8818 3479 7753 5663 6980 7426 5425 2786 2551 8184 1757 4672 8909 7777 2793 8000 8164 7060 0161 4524 9192 1732 1721 4772 3501 4144 1973 5685 4816 1361 1573 5255 2133 4757 4184 9468 4385 2332 3907 3941 4333 4547 7624 1686 2518 9835 6948 5562 0992 1922 2184 2725 5025 4256 8876 7179 0494 6016 5346 6804 9886 2723 2791 7860 8578 4383 8279 6797 6681 4541 0095 3883 7863 6095 0680 0642 2512 5205 1173 9298 4896 0841 2848 8626 9456 0424 1965 2850 2221 0661 1863 0674 4278 6220 3919 4945 0471 2371 3786 9609 5636 4371 9172 8746 7764 6575 7396 2413 8908 6583 2645 9958 1339 0478 0275 9009 9465 7640 7895 1269 4683 9835 2595 7098 2582 2620 5224 8940 7726 7194 7826 8482 6014 7699 0902 6401 3639 4437 4553 0506 8203 4962 5245 1749 3996 5143 1429 8091 9065 9250 9372 2169 6461 5157 0985 8387 4105 9788 5959 7729 7549 8930 1617 5392 8468 1382 6868 3868 9427 7415 5991 8559 2524 5953 9594 3104 9972 5246 8084 5987 2736 4469 5848 6538 3673 6222 6260 9912 4608 0512 4388 4390 4512 4413 6549 7627 8079 7715 6914 3599 7700 1296 1608 9441 6948 6855 5848 4063 5342 2072 2258 2848 8648 1584 5602 8506 0168 4273 9452 2674 6767 8895 2521 3852 2549 9546 6672 7823 9864 5659 6116 3548 8623 0577 4564 9803 5593 6345 6817 4324 1125 1507 6069 4794 5109 6596 0940 2522 8879 7108 9314 5669 1368 6722 8748 9405 6010 1503 3086 1792 8680 9208 7476 0917 8249 3858 9009 7149 0967 5985 2613 6554 9781 8931 2978 4821 6829 9894 8722 6588 0485 7564 0142 7047 7555 1323 7964 1451 5237 4623 4364 5428 5844 4795 2658 6782 1051 1413 5473 5739 5231 1342 7166 1021 3596 9536 2314 4295 2484 9371 8711 0145 7654 0359 0279 9344 0374 2007 3105 7853 9062 1983 8744 7808 4784 8968 3321 4457 1386 8751 9435 0643 0218 4531 9104 8481 0053 7061 4680 6749 1927 8191 1979 3995 2061 4196 6342 8754 4406 4374 5123 7181 9217 9998 3910 1591 9561 8146)
I don't know.
Offline
thebuilderdd wrote:
Pecola1 wrote:
floppy_gunk wrote:
Just make a script using a text editor and save the file with a .py extension. then either open it with a Python running program you have, or open Python in the terminal and typeCode:
import *filepath*, where *filepath* is the path to the script you saved. Do not include the '.py' extension.
Oh... I have to put it on a text thing, and save it as a .py then open it with python, thanks! (BTW: why not pi? You know:
Code:
3. 1415 9265 3589 7932 3846 2643 3832 7950 2884 1971 6939 9375 1058 2097 4944 5923 0781 6406 2862 0899 8628 0348 2534 2117 0679 8214 8086 5132 8230 6647 0938 4460 9550 5822 3172 5359 4081 2848 1117 4502 8410 2701 9385 2110 5559 6446 2294 8954 9303 8196 4428 8109 7566 5933 4461 2847 5648 2337 8678 3165 2712 0190 9145 6485 6692 3460 3486 1045 4326 6482 1339 3607 2602 4914 1273 7245 8700 6606 3155 8817 4881 5209 2096 2829 2540 9171 5364 3678 9259 0360 0113 3053 0548 8204 6652 1384 1469 5194 1511 6094 3305 7270 3657 5959 1953 0921 8611 7381 9326 1179 3105 1185 4807 4462 3799 6274 9567 3518 8575 2724 8912 2793 8183 0119 4912 9833 6733 6244 0656 6430 8602 1394 9463 9522 4737 1907 0217 9860 9437 0277 0539 2171 7629 3176 7523 8467 4818 4676 6940 5132 0005 6812 7145 2635 6082 7785 7713 4275 7789 6091 7363 7178 7214 6844 0901 2249 5343 0146 5495 8537 1050 7922 7968 9258 9235 4201 9956 1121 2902 1960 8640 3441 8159 8136 2977 4771 3099 6051 8707 2113 4999 9998 3729 7804 9951 0597 3173 2816 0963 1859 5024 4594 5534 6908 3026 4252 2308 2533 4468 5035 2619 3118 8171 0100 0313 7838 7528 8658 7533 2083 8142 0617 1776 6914 7303 5982 5349 0428 7554 6873 1159 5628 6388 2353 7875 9375 1957 7818 5778 0532 1712 2680 6613 0019 2787 6611 1959 0921 6420 1989 3809 5257 2010 6548 5863 2788 6593 6153 3818 2796 8230 3019 5203 5301 8529 6899 5773 6225 9941 3891 2497 2177 5283 4791 3151 5574 8572 4245 4150 6959 5082 9533 1168 6172 7855 8890 7509 8381 7546 3746 4939 3192 5506 0400 9277 0167 1139 0098 4882 4012 8583 6160 3563 7076 6010 4710 1819 4295 5596 1989 4676 7837 4494 4825 5379 7747 2684 7104 0475 3464 6208 0466 8425 9069 4912 9331 3677 0289 8915 2104 7521 6205 6966 0240 5803 8150 1935 1125 3382 4300 3558 7640 2474 9647 3263 9141 9927 2604 2699 2279 6782 3547 8163 6009 3417 2164 1219 9245 8631 5030 2861 8297 4555 7067 4983 8505 4945 8858 6926 9956 9092 7210 7975 0930 2955 3211 6534 4987 2027 5596 0236 4806 6549 9119 8818 3479 7753 5663 6980 7426 5425 2786 2551 8184 1757 4672 8909 7777 2793 8000 8164 7060 0161 4524 9192 1732 1721 4772 3501 4144 1973 5685 4816 1361 1573 5255 2133 4757 4184 9468 4385 2332 3907 3941 4333 4547 7624 1686 2518 9835 6948 5562 0992 1922 2184 2725 5025 4256 8876 7179 0494 6016 5346 6804 9886 2723 2791 7860 8578 4383 8279 6797 6681 4541 0095 3883 7863 6095 0680 0642 2512 5205 1173 9298 4896 0841 2848 8626 9456 0424 1965 2850 2221 0661 1863 0674 4278 6220 3919 4945 0471 2371 3786 9609 5636 4371 9172 8746 7764 6575 7396 2413 8908 6583 2645 9958 1339 0478 0275 9009 9465 7640 7895 1269 4683 9835 2595 7098 2582 2620 5224 8940 7726 7194 7826 8482 6014 7699 0902 6401 3639 4437 4553 0506 8203 4962 5245 1749 3996 5143 1429 8091 9065 9250 9372 2169 6461 5157 0985 8387 4105 9788 5959 7729 7549 8930 1617 5392 8468 1382 6868 3868 9427 7415 5991 8559 2524 5953 9594 3104 9972 5246 8084 5987 2736 4469 5848 6538 3673 6222 6260 9912 4608 0512 4388 4390 4512 4413 6549 7627 8079 7715 6914 3599 7700 1296 1608 9441 6948 6855 5848 4063 5342 2072 2258 2848 8648 1584 5602 8506 0168 4273 9452 2674 6767 8895 2521 3852 2549 9546 6672 7823 9864 5659 6116 3548 8623 0577 4564 9803 5593 6345 6817 4324 1125 1507 6069 4794 5109 6596 0940 2522 8879 7108 9314 5669 1368 6722 8748 9405 6010 1503 3086 1792 8680 9208 7476 0917 8249 3858 9009 7149 0967 5985 2613 6554 9781 8931 2978 4821 6829 9894 8722 6588 0485 7564 0142 7047 7555 1323 7964 1451 5237 4623 4364 5428 5844 4795 2658 6782 1051 1413 5473 5739 5231 1342 7166 1021 3596 9536 2314 4295 2484 9371 8711 0145 7654 0359 0279 9344 0374 2007 3105 7853 9062 1983 8744 7808 4784 8968 3321 4457 1386 8751 9435 0643 0218 4531 9104 8481 0053 7061 4680 6749 1927 8191 1979 3995 2061 4196 6342 8754 4406 4374 5123 7181 9217 9998 3910 1591 9561 8146)
I don't know.
It was a joke...
Offline
I can't open it. How do I open it with python? I tried but it closes as soon as it opens. I tried the import('file') BUT THAT DIDN'T WORK EITHER.
Offline
Pecola1 wrote:
I can't open it. How do I open it with python? I tried but it closes as soon as it opens. I tried the import('file') BUT THAT DIDN'T WORK EITHER.
File, open. Duh.
Offline
Pecola1 wrote:
I can't open it. How do I open it with python? I tried but it closes as soon as it opens. I tried the import('file') BUT THAT DIDN'T WORK EITHER.
Don't use parentheses, and no speech marks.
EDIT: I was a bit wrong. You have to change the directory in the terminal first, and then in Python use
import *filename*
where *filename* is the name of the file (without the file path or extension). You can change the directory in the teminal by typing
cd *path*
where *path* is the path to the folder that the file is in.
You can also type in the terminal
python *filepath*
where *filepath* is the path to the file (including the extension).
Last edited by floppy_gunk (2011-04-16 01:22:02)
Offline
I just used IDLE and opened it that way. Simplez.
Offline
markyparky56 wrote:
I just used IDLE and opened it that way. Simplez.
![]()
I was about to suggest downloading IDLE, but I forgot
Offline
floppy_gunk wrote:
markyparky56 wrote:
I just used IDLE and opened it that way. Simplez.
![]()
I was about to suggest downloading IDLE, but I forgot
![]()
I thought it came with it? I've had it for so long now.
Offline
floppy_gunk wrote:
ssss wrote:
actually, MIT + SCRATCH should actually be int(MIT) + int(SCRATCH). It lookes more proffesional, and let's you do equations like int(MIT) - 4 * int(SRATCH)
You can do that without the int() functions. Python say the answer is -19789136978705944757847491
Type in:
5 ** 50000
Don't be scared, it finished fast!
That made ASCII art...
Offline