ش | ی | د | س | چ | پ | ج |
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
الان خودم رو نگاه می کردم . دوره مقدماتی پایتون رو طی کردم . بین فارسی و اینگلیسی و گوش دادن فایل های زبان اصلی گم شدم . این نکات ریز یادم رفت . وقتی توانایی حل مسئله و درگیر شدن و وقت صرف کردن و کد نویسی رو نداری . دائم در مسیر شهر دیگری توقع دار با یک تصادفی موفق شوی .
یک روز یک موقعیت خوب . کارهای خوب تری انجام بدهی دائم به فکر این هستی از الان به بعد کاری خواهم کرد. نوشته ها شاید پر از اشتباه باشد .
translate English google:
Why is typing sweeter in coding? Constantly discusses this issue. do not copy . When coding to learn. I was looking at myself now. I took the Python introductory course. I got lost between Persian and English and listening to the original language files. I forgot these little things. When you do not have the ability to solve problems and get involved and spend time and coding. Constantly on the way to another city, expect to succeed by accident. One day a good situation. Do better things Debt constantly thinking about this I will do something from now on. The posts may be full of mistakes.
In Java for instance, the program is much longer than in Python. For starters, Java is a statically typed language, meaning that the type of a variable needs to be declared explicitly. In Python, by contrast, the presence of quotation marks suffices to type a variable as a string.
Here’s the Java example:
public class HelloWorld {
public static void main(String[] args) {
System.out.println(“Hello world!”);
}
}
In C ( the language in which Python was written), not only do you need to declare the variable type, but you also have to import the stdio package — the standard input and output library — in the script’s header.
#include <stdio.h>
int main() {
printf(“Hello world\n”);
}
Note how in C the newline character “\n” has to be explicitly
included in the string, whereas in Python the print() function
automatically produces a new line every time it’s called.