কম্পিউটার

পাইথনে howdoi


একটি পাইথন তালিকা তৈরি করুন

উদাহরণ

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.

  1. CSS-এ None প্রদর্শন করুন

  2. পাইথনে %s এর পরিবর্তে %r কখন ব্যবহার করবেন?

  3. কিভাবে Python এ ArithmeticError ব্যতিক্রম ধরবেন?

  4. কিভাবে পাইথন ফাংশন থেকে কোনটি ফেরত দেবেন না?