فیروزه ای
فیروزه ای
خواندن ۲ دقیقه·۲ سال پیش

شروعی دیگر با پایتون

پایتون زبانی برنامه نویسی شی گرا و بسیار ساده است. خصوصیتی که پایتون را از دیگر زبان های برنامه نویسی متمایز کرده است کم بودن قوائد و مقررات،شئ گرایی و فراوانی آن است. پایتون زبانی سطح بالا است که صراحت و نزدیکی آن به زبان انگلیسی شمارا مجذوب آن خواهدکرد.

برای شروع کار با این زبان ابتداباید مترجم این زبان را از اینجا دانلود و نصب کنید.

  • انواع داده در پایتون
  • دستور پرینت
  • دستور اینپوت
>>> hello Traceback (most recent call last): File &quot<pyshell#0>&quot, line 1, in <module> hello NameError: name 'hello' is not defined >>> 'hello' 'hello' >>> 1 1 >>> 1+5 6 >>> 1+5*2/25*3**2//1 4.0 >>> 456/2 228.0 >>> a+b Traceback (most recent call last): File &quot<pyshell#6>&quot, line 1, in <module> a+b NameError: name 'a' is not defined >>> 'a'+'b' 'ab' >>> 'a' - 'a' Traceback (most recent call last): File &quot<pyshell#8>&quot, line 1, in <module> 'a' - 'a' TypeError: unsupported operand type(s) for -: 'str' and 'str' >>> 'a'*50 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' >>>

تعریف متغیر در پایتون

>>> hello Traceback (most recent call last): File &quot<pyshell#0>&quot, line 1, in <module> hello NameError: name 'hello' is not defined >>> 'hello' 'hello' >>> 1 1 >>> 1+5 6 >>> 1+5*2/25*3**2//1 4.0 >>> 456/2 228.0 >>> a+b Traceback (most recent call last): File &quot<pyshell#6>&quot, line 1, in <module> a+b NameError: name 'a' is not defined >>> 'a'+'b' 'ab' >>> 'a' - 'a' Traceback (most recent call last): File &quot<pyshell#8>&quot, line 1, in <module> 'a' - 'a' TypeError: unsupported operand type(s) for -: 'str' and 'str' >>> 'a'*50 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' >>>

دستور پرینت

>>> print 4 SyntaxError: Missing parentheses in call to 'print'. Did you mean print(4)? >>> print(1) 1 >>> print(ali) Traceback (most recent call last): File &quot<pyshell#22>&quot, line 1, in <module> print(ali) NameError: name 'ali' is not defined >>> print('ali') ali >>> print(132126*3/6/3) 22021.0 >>> print('\nali\nmammad\naref\tamir') ali mammad aref amir >>>

Input

>>> input <built-in function input> >>> input() jdaskadkjbfhf546 'jdaskadkjbfhf546' >>> a = input('ye adad:') ye adad:54 >>> a '54' >>> print(a) 54 >>>



CYAN


برنامه نویسیپایتونکامپیوتررایانهریاضی
شاید از این پست‌ها خوشتان بیاید