Open utterances-bot opened 3 years ago
a, b = input().split() 10 40 a = int(a) b = int(b) a * b
a o b er type string, string diya " - + / * " kore jay na tai aikhaneo kono dhoroner onko kora shomvob na
It will through a TypeError for preventing this we need to convert the data types into string format then we can have the exact answer. n, m = input().split() 888 9099 n=int(n) m=int(m) n*m 7999992
Actually , Its String . String to string calculation is not possible but its could be concatenate . If we use a, b = map(int, input().split()) this conversion we do the calculate values
a, b = input().split() 15 15 a = int(a) b = int(b) type(a) <class 'int'> type(b) <class 'int'> a*b 225
a,b = input().split() 10 15 a=int(a) b=int(b) a*b 150
কমা ব্যাবহার না করে স্পেস ব্যাবহার করুন ।
type(a) <class 'int'> type(b) <class 'int'>
a, b = map(int,input().split())
a, b= map(int, input().splite()) এখানে splite এর আগে ফুলস্টপ কেন দেওয়া হয়েছে।
a, b = input().split() 10 40 a '10' b '40' type(a) <class 'str'> type(b) <class 'str'>
ami pycharm a ai soto program gula try korsi, but aktao output ashse na
Not possible, as the variables contain string type data.
Jabe Na But a,b =str(input()).split() dile hobe
এটি স্ট্রিং টাইপ। স্ট্রিং থেকে স্ট্রিং +, -, *, / হয় না।
Any one solve this problem in single line code
a, b = input().split() # input function always return string c = int(a) * int(b) # cast this string to int print(c)
ভেরিয়েবল, ডেটা টাইপ ও ডেটা ইনপুট | সহজ ভাষায় পাইথন ৩
ভেরিয়েবল, ডেটা টাইপ ও ডেটা ইনপুট ভেরিয়েবল চলুন, সবাই মিলে ছেলেবেলায় ফিরে যাই। সেই দিনগুলোর কথা কি মনে আছে, যখন আমরা নতুন নতুন বীজগণিত শিখেছিলাম? না
https://python.maateen.me/docs/variable-data-type-data-input/