একটি পাইথন তালিকা তৈরি করুন
উদাহরণ
C:\Py3Project>howdoi create a python list
আউটপুট
উপরের কোডটি চালানো আমাদের নিম্নলিখিত ফলাফল দেয় -
>>> l = [None] * 10 >>> l [None, None, None, None, None, None, None, None, None, None]
আজকের তারিখ মুদ্রণ
উদাহরণ
c:\python3>howdoi print today's date in python
আউটপুট
উপরের কোডটি চালানো আমাদের নিম্নলিখিত ফলাফল দেয় -
for date in mylist : print str(date)
উদাহরণ
c:\python3>howdoi create fibonnaci series in python
আউটপুট
উপরের কোডটি চালানো আমাদের নিম্নলিখিত ফলাফল দেয় -
def F(n): if n == 0: return 0 elif n == 1: return 1 else: return F(n-1)+F(n-2)
উদাহরণ
c:\python3>howdoi use calendar in javascript
আউটপুট
উপরের কোডটি চালানো আমাদের নিম্নলিখিত ফলাফল দেয় -
You can choose from Material UI. https://www.material-ui.com/#/components/date-picker https://www.material-ui.com/#/components/time-picker
উদাহরণ
c:\python3>howdoi go to north pole
আউটপুট
উপরের কোডটি চালানো আমাদের নিম্নলিখিত ফলাফল দেয় -
I believe the difference is because GPS uses the geographical North/South Pole rather than the magnetic ones. The further north you are, the bigger the difference is to where you are. The GPS satellite positions need to be absolute, and using a fluctuating point of reference like the magnetic poles is a big no-no.