How To Use split method in Python Tutorial

First published at 23:30 UTC on August 9th, 2021.

Learn how to use .split to turn one variable or string into multiple variables or strings in python. EG:
string='hello world wut up'
a,b,c,d=string.split(" ") # now a=hello; b=world; c=wut; d=up
Learn more free at https://GreyHatLa…

MORE
CategoryScience & Technology
SensitivityNormal - Content that is suitable for ages 16 and over
DISCUSS THIS VIDEO